From 0cc7f626635ac231c330e9c58ee409dedcba9e38 Mon Sep 17 00:00:00 2001 From: Mikkel Ricky Date: Wed, 9 Sep 2026 16:08:53 +0200 Subject: [PATCH 1/5] Added test data setup --- CHANGELOG.md | 2 + docs/Testing.md | 12 +++ src/Controller/DataController.php | 9 -- src/Controller/DefaultController.php | 2 +- src/Source/Test/TestHandicapParking.php | 98 +++++++++++++++++++ templates/default/index.html.twig | 84 +++++----------- templates/test/index.html.twig | 12 +++ tests/resources/README.md | 9 ++ .../config/Parking/OnStreetParking.yaml | 25 +++++ tests/resources/data/fetch-resources | 17 ++++ ...page=get_geojson_opendata&datasource=invap | 1 + 11 files changed, 204 insertions(+), 67 deletions(-) create mode 100644 docs/Testing.md create mode 100644 src/Source/Test/TestHandicapParking.php create mode 100644 templates/test/index.html.twig create mode 100644 tests/resources/README.md create mode 100644 tests/resources/config/Parking/OnStreetParking.yaml create mode 100755 tests/resources/data/fetch-resources create mode 100644 tests/resources/data/webkort.aarhuskommune.dk/spatialmap?page=get_geojson_opendata&datasource=invap diff --git a/CHANGELOG.md b/CHANGELOG.md index cb66a86..bd7d43b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +* [PR-10](https://github.com/itk-dev/enter/pull/10) + Added test data setup * [PR-19](https://github.com/itk-dev/enter/pull/19) Declare source metadata in an `#[AsDataSource]` attribute on the source class * [PR-12](https://github.com/itk-dev/enter/pull/12) diff --git a/docs/Testing.md b/docs/Testing.md new file mode 100644 index 0000000..9c66a2f --- /dev/null +++ b/docs/Testing.md @@ -0,0 +1,12 @@ +# Testing + +For local testing and development we use a test controller that's only enabled in the `dev` and `test` environments. + +Load some local test data from a test data source (only available in the `dev` and `test` environments): + +```shell +docker compose exec phpfpm php bin/console app:source:import test:mtm_spatialmaps-handicap-parking +curl 'http://enter.local.itkdev.dk/data/ngsi-ld/v1/entities?type=https://smartdatamodels.org/dataModel.Parking/OnStreetParking' +``` + +See the result on . diff --git a/src/Controller/DataController.php b/src/Controller/DataController.php index 25ccb2f..fb8c43f 100644 --- a/src/Controller/DataController.php +++ b/src/Controller/DataController.php @@ -6,7 +6,6 @@ use Symfony\Component\HttpFoundation\JsonResponse; use Symfony\Component\HttpFoundation\Request; use Symfony\Component\Routing\Attribute\Route; -use Symfony\Component\Yaml\Yaml; use Symfony\Contracts\HttpClient\HttpClientInterface; final class DataController extends AbstractController @@ -54,12 +53,4 @@ public function index(Request $request, string $path, string $_format, json: true, ); } - - #[Route('/test', name: 'data_test')] - public function test(): JsonResponse - { - $data = Yaml::parseFile(__DIR__.'/data.yaml'); - - return new JsonResponse($data); - } } diff --git a/src/Controller/DefaultController.php b/src/Controller/DefaultController.php index 674b131..78d9f59 100644 --- a/src/Controller/DefaultController.php +++ b/src/Controller/DefaultController.php @@ -10,7 +10,7 @@ final class DefaultController extends AbstractController { - #[Route('/{path}', name: 'app_default', requirements: ['path' => Requirement::CATCH_ALL], methods: [Request::METHOD_GET])] + #[Route('/{path}', name: 'app_default', requirements: ['path' => Requirement::CATCH_ALL], methods: [Request::METHOD_GET], priority: -9999)] public function index(?string $path = null): Response { return $this->render(null === $path ? 'default/index.html.twig' : sprintf('default/%s.html.twig', $path)); diff --git a/src/Source/Test/TestHandicapParking.php b/src/Source/Test/TestHandicapParking.php new file mode 100644 index 0000000..fe886bc --- /dev/null +++ b/src/Source/Test/TestHandicapParking.php @@ -0,0 +1,98 @@ +definition = new Definition( + id: 'test:mtm_spatialmaps-handicap-parking', + title: 'Test: Handicapparkering, Aarhus Kommune', + description: 'Disabled parking bays in Aarhus Municipality, with the number of reserved bays per location.', + publisher: 'Aarhus Kommune', + contact: 'ppg@aarhus.dk', + landingPage: 'https://www.opendata.dk/city-of-aarhus/parkering-i-aarhus-kommune', + accessUrl: 'http://nginx:8080/test/data/webkort.aarhuskommune.dk/spatialmap?page=get_geojson_opendata&datasource=invap', + mediaType: 'application/geo+json', + crs: 'EPSG:25832', + model: 'OnStreetParking', + contextUrl: 'https://raw.githubusercontent.com/smart-data-models/dataModel.Parking/master/context.jsonld', + updateFrequency: 'continuous', + licence: null, + + omittedFields: [ + 'ident' => 'Single-letter code; its meaning is not documented and not confirmed by the data owner.', + 'oprettet_af' => 'Directory username of the municipal employee who created the record.', + 'rettet_af' => 'Directory username of the municipal employee who last edited the record.', + 'oprettet_dato' => 'Describes the register record.', + 'rettet_dato' => 'Describes the register record.', + 'mi_style' => 'MapInfo rendering style, empty throughout the export.', + ], + ); + } + + /** + * Maps one feed record onto an NgsiEntity. + * + * @param array $data GeoJSON Feature + */ + public function createNgsiEntity(array $data): ?NgsiEntity + { + $row = $data['properties'] ?? null; + $geometry = $data['geometry'] ?? null; + + if (!\is_array($row) || !\is_array($geometry)) { + return null; + } + + // mi_prinx is the feed's stable primary key. Without it there is no + // way to address the same bay again on the next import, and an upsert + // would create duplicates instead of updating. + $key = $row['mi_prinx'] ?? null; + if (null === $key || '' === $key) { + return null; + } + + $entity = new NgsiEntity( + \sprintf('urn:ngsi-ld:%s:aarhus-handicap-%s', $this->definition->model, $key), + $this->definition->model + ); + + return $entity + ->setProperty('name', $this->address($row)) + ->setProperty('description', trim((string) ($row['bemrk'] ?? ''))) + ->setProperty('category', ['forDisabled']) + ->setProperty('totalSpotNumber', (int) ($row['invalidepladser'] ?? 0)) + ->setProperty('source', $this->definition->accessUrl) + ->geoProperty('location', $this->transformer->transformGeometry($this->definition->crs, $geometry)); + } + + /** + * @param array $row + */ + private function address(array $row): string + { + return trim(\sprintf( + '%s %s', + trim((string) ($row['vejnavn'] ?? '')), + trim((string) ($row['husnnr'] ?? '')) + )); + } +} diff --git a/templates/default/index.html.twig b/templates/default/index.html.twig index 248b9b6..38b64ee 100644 --- a/templates/default/index.html.twig +++ b/templates/default/index.html.twig @@ -1,61 +1,31 @@ {% extends 'base.html.twig' %} {% block content %} - {% for path in ['hundeskov'] %} - {{ path }} - {% endfor %} - -
#map
- - - -{# -4.9 NGSI-LD Query Language: https://cim.etsi.org/NGSI-LD/official/clause-4.html#4.9 -4.10 NGSI-LD Geoquery Language: https://cim.etsi.org/NGSI-LD/official/clause-4.html#4.10 -#} -
    -{% for query in [ -{type: 'handicapparkering'}, -{type: 'hundeskov'}, -{type: 'toilet'}, -{q: 'beskrivelse==Handicaptoilet'}, - -{ -georel: 'near;maxDistance==20000', -geometry: 'Point', -coordinates: [10, 56]|json_encode, -}, - -{ -georel: 'near;maxDistance==2000', -geometry: 'Point', -coordinates: [10.236808047161853, 56.101226991176155]|json_encode, -}, - -{ -georel: 'near;maxDistance==8000', -geometry: 'Point', -coordinates: [10.236808047161853, 56.101226991176155]|json_encode, -}, - -] %} -{% set url = path('app_data', {path: 'ngsi-ld/v1/entities', _format: 'geojson'}|merge(query)) %} - -{# -Scorpio complains about "Bad Request Data." and says "Georelation is not valid" when `==` is URL encoded! -#} -{% set url = url|replace({('maxDistance=='|url_encode): 'maxDistance=='}) %} - -
  • {{ url }}
  • -{% endfor %} -
- -Reset -
-{# #} -{# https://github.com/Septima/widget-issues/issues/24#issuecomment-5478400091 #} - - -https://enter.ddev.site:33001/data/ngsi-ld/v1/entities.geojson?georel=near;maxDistance==2000&geometry=Point&coordinates=[8,40] - + + +
+
+ +
+
+ + {% if 'dev' == app.environment %} +

You're probably looking for the test controller, right?

+ {% endif %} {% endblock %} diff --git a/templates/test/index.html.twig b/templates/test/index.html.twig new file mode 100644 index 0000000..dc0fb8a --- /dev/null +++ b/templates/test/index.html.twig @@ -0,0 +1,12 @@ +{% extends 'base.html.twig' %} + +{% block content %} + {% set type = 'https://smartdatamodels.org/dataModel.Parking/OnStreetParking' %} + +

{{ type }}

+ +
+ {# #} + {# https://github.com/Septima/widget-issues/issues/24#issuecomment-5478400091 #} + +{% endblock %} diff --git a/tests/resources/README.md b/tests/resources/README.md new file mode 100644 index 0000000..63a8c9b --- /dev/null +++ b/tests/resources/README.md @@ -0,0 +1,9 @@ +# Test data resources + +Run + +```shell +./data/fetch-resources +``` + +to update the data resources. diff --git a/tests/resources/config/Parking/OnStreetParking.yaml b/tests/resources/config/Parking/OnStreetParking.yaml new file mode 100644 index 0000000..f3e6c98 --- /dev/null +++ b/tests/resources/config/Parking/OnStreetParking.yaml @@ -0,0 +1,25 @@ +debug: true +map: + # "srs": "EPSG:4326", + + view: + zoomLevel: 6 + # Dokk1 + x: 575436.27797098 + y: 6223832.5677597 + # x: 10.214391917362704, + # y: 56.153720859591054 + + layer: + - namedlayer: "#septima_standard" + + - features_host: "/data/ngsi-ld/v1/entities.geojson?type=https://smartdatamodels.org/dataModel.Parking/OnStreetParking" + + # THe undocumented property src is needed to display GeoJSON! + srs: "EPSG:4326" + + visible: true + features: true + + features_style: + - namedstyle: "#001" diff --git a/tests/resources/data/fetch-resources b/tests/resources/data/fetch-resources new file mode 100755 index 0000000..77b20c9 --- /dev/null +++ b/tests/resources/data/fetch-resources @@ -0,0 +1,17 @@ +#!/usr/bin/env bash +set -o errexit -o errtrace -o noclobber -o nounset -o pipefail +IFS=$'\n\t' + +script_dir=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd) + +cd "$script_dir" + +urls=( + "https://webkort.aarhuskommune.dk/spatialmap?page=get_geojson_opendata&datasource=invap" +) +for url in "${urls[@]}"; do + target_file_name="${url##https://}" + mkdir -p "$(dirname "$target_file_name")" + curl --silent "$url" >| "$target_file_name" + echo "$url → $target_file_name" +done diff --git a/tests/resources/data/webkort.aarhuskommune.dk/spatialmap?page=get_geojson_opendata&datasource=invap b/tests/resources/data/webkort.aarhuskommune.dk/spatialmap?page=get_geojson_opendata&datasource=invap new file mode 100644 index 0000000..77f0634 --- /dev/null +++ b/tests/resources/data/webkort.aarhuskommune.dk/spatialmap?page=get_geojson_opendata&datasource=invap @@ -0,0 +1 @@ +{ "type": "FeatureCollection","crs": {"type": "name", "properties": {"name": "EPSG:25832"}}, "bbox": [570415.7999999999,6211070.354199971,577384.3500328106,6232262.860918405],"features": [{"type": "Feature","geometry": {"type": "Point","coordinates": [575153.9524951308, 6224260.609753487]},"properties": {"vejnavn": "Domkirkeplads/Bispegade", "husnnr": "1", "invalidepladser": 6, "bemrk": null, "ident": "P", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:23.91", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:23.91", "mi_style": null, "mi_prinx": 172}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574656.6043964146, 6223886.745852402]},"properties": {"vejnavn": "Christiansgade", "husnnr": "2", "invalidepladser": 5, "bemrk": null, "ident": "P", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:23.943", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:23.943", "mi_style": null, "mi_prinx": 173}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574519.3323188772, 6223394.810052871]},"properties": {"vejnavn": "Krigersvej", "husnnr": "5", "invalidepladser": 4, "bemrk": null, "ident": "P", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:24.08", "rettet_af": "spatial_reader", "rettet_dato": "2025-07-31 10:04:59.57", "mi_style": null, "mi_prinx": 175}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574916.9504383737, 6223961.870560985]},"properties": {"vejnavn": "Telefonsmøgen / Busgaden", "husnnr": "6", "invalidepladser": 3, "bemrk": null, "ident": "P", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:24.113", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:24.113", "mi_style": null, "mi_prinx": 176}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574742.8394360626, 6224182.215710367]},"properties": {"vejnavn": "Grønnegade", "husnnr": "3", "invalidepladser": 2, "bemrk": null, "ident": "P", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:24.15", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:24.15", "mi_style": null, "mi_prinx": 177}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574727.5186573606, 6224387.563912335]},"properties": {"vejnavn": "Klostergade 1", "husnnr": "74", "invalidepladser": 2, "bemrk": null, "ident": "P", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:24.193", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:24.193", "mi_style": null, "mi_prinx": 178}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574855.8060164271, 6224401.099589322]},"properties": {"vejnavn": "Klostergade 2", "husnnr": "56", "invalidepladser": 1, "bemrk": null, "ident": "P", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:24.26", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 11:01:04.027", "mi_style": null, "mi_prinx": 179}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574504.0892603148, 6223553.9135994455]},"properties": {"vejnavn": "Skt. Nicolaus Gade", "husnnr": "1 til 3", "invalidepladser": 2, "bemrk": null, "ident": "P", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:24.363", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:24.363", "mi_style": null, "mi_prinx": 181}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574952.5463860369, 6223535.318275151]},"properties": {"vejnavn": "Ny Banegårdsgade", "husnnr": "49", "invalidepladser": 2, "bemrk": null, "ident": "P", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:24.403", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 14:16:08.26", "mi_style": null, "mi_prinx": 182}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575228.2588088225, 6224049.9438427165]},"properties": {"vejnavn": "Kannikegade", "husnnr": "16A", "invalidepladser": 2, "bemrk": "Tidsbegrænset", "ident": "P", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:24.46", "rettet_af": "spatial_reader", "rettet_dato": "2025-07-31 09:57:11.063", "mi_style": null, "mi_prinx": 183}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575319.8423906788, 6224763.017489845]},"properties": {"vejnavn": "Nørreport", "husnnr": "22", "invalidepladser": 2, "bemrk": null, "ident": "P", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:24.51", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:24.51", "mi_style": null, "mi_prinx": 184}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574890.2916237647, 6223681.297670785]},"properties": {"vejnavn": "Rosenkrantzgade", "husnnr": "24", "invalidepladser": 1, "bemrk": null, "ident": "P", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:24.557", "rettet_af": "spatial_reader", "rettet_dato": "2025-12-02 14:37:23.03", "mi_style": null, "mi_prinx": 185}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574751.5470476393, 6223649.994042548]},"properties": {"vejnavn": "Park Alle 2", "husnnr": "2", "invalidepladser": 1, "bemrk": null, "ident": "P", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:24.61", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:24.61", "mi_style": null, "mi_prinx": 186}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575067.4865718425, 6224480.395016832]},"properties": {"vejnavn": "Borggade 1", "husnnr": "9", "invalidepladser": 1, "bemrk": null, "ident": "P", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:24.657", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:24.657", "mi_style": null, "mi_prinx": 187}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574636.8473534812, 6223433.838040478]},"properties": {"vejnavn": "Orla Lehmanns Alle", "husnnr": "7", "invalidepladser": 1, "bemrk": null, "ident": "P", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:24.743", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:24.743", "mi_style": null, "mi_prinx": 188}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574714.8, 6223554.750000001]},"properties": {"vejnavn": "Johannes Bjergs Gade", "husnnr": "", "invalidepladser": 1, "bemrk": "På hjørner ved Banegårdspladsen 14", "ident": "1185", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:24.773", "rettet_af": "spatial_reader", "rettet_dato": "2020-03-17 08:49:33.863", "mi_style": null, "mi_prinx": 189}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574779.9704729278, 6223780.417495232]},"properties": {"vejnavn": "Rådhuspladsen", "husnnr": "5", "invalidepladser": 1, "bemrk": null, "ident": "P", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:24.81", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:24.81", "mi_style": null, "mi_prinx": 190}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575021.1449268986, 6223906.111910498]},"properties": {"vejnavn": "Ferdinand Sallings Stræde", "husnnr": "4", "invalidepladser": 1, "bemrk": null, "ident": "P", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:24.847", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:24.847", "mi_style": null, "mi_prinx": 191}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575028.063190263, 6223924.808104941]},"properties": {"vejnavn": "Ferdinand Sallings Stræde", "husnnr": "4", "invalidepladser": 1, "bemrk": null, "ident": "P", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:24.873", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:24.873", "mi_style": null, "mi_prinx": 192}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574539.4144572791, 6224578.814983732]},"properties": {"vejnavn": "Grønnegade", "husnnr": "91", "invalidepladser": 1, "bemrk": null, "ident": "P", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:24.907", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:24.907", "mi_style": null, "mi_prinx": 193}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574533.8732499122, 6224584.343858345]},"properties": {"vejnavn": "Grønnegade", "husnnr": "91", "invalidepladser": 1, "bemrk": null, "ident": "P", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:24.933", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:24.933", "mi_style": null, "mi_prinx": 194}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575460.8322248239, 6224695.803278689]},"properties": {"vejnavn": "Kystvejen", "husnnr": "55", "invalidepladser": 1, "bemrk": null, "ident": "P", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:24.97", "rettet_af": "spatial_reader", "rettet_dato": "2025-07-28 09:10:54.057", "mi_style": null, "mi_prinx": 195}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575461.5348009364, 6224697.442622952]},"properties": {"vejnavn": "Kystvejen", "husnnr": "55", "invalidepladser": 1, "bemrk": null, "ident": "P", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:25.003", "rettet_af": "spatial_reader", "rettet_dato": "2025-07-28 09:10:30.637", "mi_style": null, "mi_prinx": 196}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575455.3216124629, 6226039.447676172]},"properties": {"vejnavn": "Steen Billes Torv", "husnnr": "6", "invalidepladser": 1, "bemrk": null, "ident": "P", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:25.037", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:25.037", "mi_style": null, "mi_prinx": 197}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573959.1296566332, 6223167.542244217]},"properties": {"vejnavn": "Ankersgade", "husnnr": "21", "invalidepladser": 1, "bemrk": null, "ident": "P", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:25.07", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:25.07", "mi_style": null, "mi_prinx": 198}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573965.1903521908, 6223169.331879942]},"properties": {"vejnavn": "Ankersgade", "husnnr": "21", "invalidepladser": 1, "bemrk": null, "ident": "P", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:25.093", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:25.093", "mi_style": null, "mi_prinx": 199}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573771.8681415829, 6222925.054833357]},"properties": {"vejnavn": "Læssøesgade", "husnnr": "85", "invalidepladser": 1, "bemrk": null, "ident": "P", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:25.127", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 11:14:58.7", "mi_style": null, "mi_prinx": 200}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573866.0093369979, 6222685.91027901]},"properties": {"vejnavn": "Harald Jenesens Plads", "husnnr": null, "invalidepladser": 1, "bemrk": null, "ident": "P", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:25.163", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:25.163", "mi_style": null, "mi_prinx": 201}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573940.9310782718, 6222759.405319308]},"properties": {"vejnavn": "Harald Jenesens Plads", "husnnr": null, "invalidepladser": 1, "bemrk": null, "ident": "P", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:25.19", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:25.19", "mi_style": null, "mi_prinx": 202}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574372.5907076919, 6222033.218436124]},"properties": {"vejnavn": "Skovbrynet", "husnnr": null, "invalidepladser": 1, "bemrk": null, "ident": "P", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:25.297", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 11:33:25.34", "mi_style": null, "mi_prinx": 203}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574368.4426301755, 6222031.638216118]},"properties": {"vejnavn": "Skovbrynet", "husnnr": null, "invalidepladser": 1, "bemrk": null, "ident": "P", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:25.323", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 11:33:16.533", "mi_style": null, "mi_prinx": 204}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574370.6154326841, 6222032.23079862]},"properties": {"vejnavn": "Skovbrynet", "husnnr": null, "invalidepladser": 1, "bemrk": null, "ident": "P", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:25.35", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 11:33:06.723", "mi_style": null, "mi_prinx": 205}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574136.7129774133, 6222538.070841889]},"properties": {"vejnavn": "Chr. Wærums Vej", "husnnr": "29", "invalidepladser": 1, "bemrk": null, "ident": "P", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:25.387", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 09:47:59.483", "mi_style": null, "mi_prinx": 206}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574736.8941823252, 6222561.355631749]},"properties": {"vejnavn": "Dalgas Avenue", "husnnr": "33", "invalidepladser": 1, "bemrk": null, "ident": "P", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:25.427", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:25.427", "mi_style": null, "mi_prinx": 207}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574086.8495389346, 6223044.81722454]},"properties": {"vejnavn": "Max Müllers Gade", "husnnr": null, "invalidepladser": 1, "bemrk": null, "ident": "P", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:25.5", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:25.5", "mi_style": null, "mi_prinx": 209}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575326.9832918391, 6224757.308651863]},"properties": {"vejnavn": "Nørreport", "husnnr": null, "invalidepladser": 1, "bemrk": null, "ident": "P", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:25.53", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:25.53", "mi_style": null, "mi_prinx": 210}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575469.2735810118, 6224466.787786544]},"properties": {"vejnavn": "Inge Lehmanns Gade", "husnnr": null, "invalidepladser": 1, "bemrk": "Navitas", "ident": "P", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:25.567", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:25.567", "mi_style": null, "mi_prinx": 211}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575471.3432879301, 6224465.178114189]},"properties": {"vejnavn": "Inge Lehmanns Gade", "husnnr": null, "invalidepladser": 1, "bemrk": "Navitas", "ident": "P", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:25.59", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:25.59", "mi_style": null, "mi_prinx": 212}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575473.4129948484, 6224463.568441832]},"properties": {"vejnavn": "Inge Lehmanns Gade", "husnnr": null, "invalidepladser": 1, "bemrk": "Navitas", "ident": "P", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:25.617", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:25.617", "mi_style": null, "mi_prinx": 213}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575475.4744559224, 6224461.968767442]},"properties": {"vejnavn": "Inge Lehmanns Gade", "husnnr": null, "invalidepladser": 1, "bemrk": "Navitas", "ident": "P", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:25.647", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:25.647", "mi_style": null, "mi_prinx": 214}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575477.5441628407, 6224460.129141892]},"properties": {"vejnavn": "Inge Lehmanns Gade", "husnnr": null, "invalidepladser": 1, "bemrk": "Navitas", "ident": "P", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:25.673", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:25.673", "mi_style": null, "mi_prinx": 215}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575479.1521024784, 6224458.289516343]},"properties": {"vejnavn": "Inge Lehmanns Gade", "husnnr": null, "invalidepladser": 1, "bemrk": "Navitas", "ident": "P", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:25.773", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:25.773", "mi_style": null, "mi_prinx": 216}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575481.2218093968, 6224456.219937599]},"properties": {"vejnavn": "Inge Lehmanns Gade", "husnnr": null, "invalidepladser": 1, "bemrk": "Navitas", "ident": "P", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:25.797", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:25.797", "mi_style": null, "mi_prinx": 217}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575483.0523868304, 6224454.620263209]},"properties": {"vejnavn": "Inge Lehmanns Gade", "husnnr": null, "invalidepladser": 1, "bemrk": "Navitas", "ident": "P", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:25.823", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:25.823", "mi_style": null, "mi_prinx": 218}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575485.1220937488, 6224452.320731272]},"properties": {"vejnavn": "Inge Lehmanns Gade", "husnnr": null, "invalidepladser": 1, "bemrk": "Navitas", "ident": "P", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:25.847", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:25.85", "mi_style": null, "mi_prinx": 219}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575487.1918006671, 6224449.791246141]},"properties": {"vejnavn": "Inge Lehmanns Gade", "husnnr": null, "invalidepladser": 1, "bemrk": "Navitas", "ident": "P", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:25.88", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:25.88", "mi_style": null, "mi_prinx": 220}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575515.433817381, 6224381.585129299]},"properties": {"vejnavn": "Inge Lehmanns Gade", "husnnr": null, "invalidepladser": 1, "bemrk": "Navitas", "ident": "P", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:25.907", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:25.907", "mi_style": null, "mi_prinx": 221}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575517.96529158, 6224381.585129299]},"properties": {"vejnavn": "Inge Lehmanns Gade", "husnnr": null, "invalidepladser": 1, "bemrk": "Navitas", "ident": "P", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:25.93", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:25.93", "mi_style": null, "mi_prinx": 222}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575520.9502872152, 6224381.585129299]},"properties": {"vejnavn": "Inge Lehmanns Gade", "husnnr": null, "invalidepladser": 1, "bemrk": "Navitas", "ident": "P", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:25.957", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:25.957", "mi_style": null, "mi_prinx": 223}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575523.9352828503, 6224381.585129299]},"properties": {"vejnavn": "Inge Lehmanns Gade", "husnnr": null, "invalidepladser": 1, "bemrk": "Navitas", "ident": "P", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:25.983", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:25.983", "mi_style": null, "mi_prinx": 224}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575526.9202784855, 6224381.585129299]},"properties": {"vejnavn": "Inge Lehmanns Gade", "husnnr": null, "invalidepladser": 1, "bemrk": "Navitas", "ident": "P", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:26.007", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:26.007", "mi_style": null, "mi_prinx": 225}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575529.6743904804, 6224381.585129299]},"properties": {"vejnavn": "Inge Lehmanns Gade", "husnnr": null, "invalidepladser": 1, "bemrk": "Navitas", "ident": "P", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:26.033", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:26.033", "mi_style": null, "mi_prinx": 226}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575532.6593861155, 6224381.585129299]},"properties": {"vejnavn": "Inge Lehmanns Gade", "husnnr": null, "invalidepladser": 1, "bemrk": "Navitas", "ident": "P", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:26.067", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:26.067", "mi_style": null, "mi_prinx": 227}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575535.4217439546, 6224381.585129299]},"properties": {"vejnavn": "Inge Lehmanns Gade", "husnnr": null, "invalidepladser": 1, "bemrk": "Navitas", "ident": "P", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:26.09", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:26.09", "mi_style": null, "mi_prinx": 228}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575538.4067395899, 6224381.585129299]},"properties": {"vejnavn": "Inge Lehmanns Gade", "husnnr": null, "invalidepladser": 1, "bemrk": "Navitas", "ident": "P", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:26.117", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:26.117", "mi_style": null, "mi_prinx": 229}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575540.9299679445, 6224381.585129299]},"properties": {"vejnavn": "Inge Lehmanns Gade", "husnnr": null, "invalidepladser": 1, "bemrk": "Navitas", "ident": "P", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:26.157", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:26.157", "mi_style": null, "mi_prinx": 230}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574394.576202219, 6223499.304714926]},"properties": {"vejnavn": "Valdemarsgade", "husnnr": "20", "invalidepladser": 1, "bemrk": null, "ident": "1102", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:26.19", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:26.19", "mi_style": null, "mi_prinx": 231}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575033.2828097024, 6222970.362379608]},"properties": {"vejnavn": "Heibergsgade", "husnnr": "27", "invalidepladser": 1, "bemrk": null, "ident": "1104", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:26.223", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:26.223", "mi_style": null, "mi_prinx": 232}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573499.0, 6224197.1000000015]},"properties": {"vejnavn": "Regensburgsgade", "husnnr": "12", "invalidepladser": 1, "bemrk": null, "ident": "1104", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:26.257", "rettet_af": "spatial_reader", "rettet_dato": "2020-03-17 09:24:06.55", "mi_style": null, "mi_prinx": 233}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574459.3308174759, 6223990.544724442]},"properties": {"vejnavn": "Marstrandsgade", "husnnr": "2", "invalidepladser": 1, "bemrk": null, "ident": "1104", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:26.287", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:26.287", "mi_style": null, "mi_prinx": 234}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574218.7335726058, 6224300.371660066]},"properties": {"vejnavn": "Mønsgade", "husnnr": "4", "invalidepladser": 1, "bemrk": null, "ident": "1108", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:26.32", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:26.32", "mi_style": null, "mi_prinx": 235}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574841.6081590408, 6224887.112230719]},"properties": {"vejnavn": "Sjællandsgade", "husnnr": "92", "invalidepladser": 1, "bemrk": null, "ident": "1108", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:26.353", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:26.353", "mi_style": null, "mi_prinx": 236}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573564.4, 6224497.9]},"properties": {"vejnavn": "Tage Hansens Gade", "husnnr": "31B", "invalidepladser": 1, "bemrk": null, "ident": "1108", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:26.38", "rettet_af": "spatial_reader", "rettet_dato": "2020-03-17 11:49:18.623", "mi_style": null, "mi_prinx": 237}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573350.8007395364, 6225946.216653077]},"properties": {"vejnavn": "Hammershusvej", "husnnr": "41", "invalidepladser": 1, "bemrk": "Hammershusvej mellem nr. 41 og nr. 43", "ident": "1109", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:26.413", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:26.413", "mi_style": null, "mi_prinx": 238}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575124.3828974852, 6225601.696779101]},"properties": {"vejnavn": "Skt. Johannes Allé", "husnnr": "4", "invalidepladser": 1, "bemrk": "Tidsbegrænset", "ident": "1110", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:26.443", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 09:00:33.773", "mi_style": null, "mi_prinx": 239}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575252.1357631639, 6224570.226731846]},"properties": {"vejnavn": "Studsgade", "husnnr": "44", "invalidepladser": 2, "bemrk": null, "ident": "1111", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:26.473", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:26.473", "mi_style": null, "mi_prinx": 240}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574824.2671484861, 6226340.746347698]},"properties": {"vejnavn": "Skovvangsvej", "husnnr": "58", "invalidepladser": 1, "bemrk": null, "ident": "1111", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:26.507", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:26.507", "mi_style": null, "mi_prinx": 241}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575281.3650102671, 6223652.100041065]},"properties": {"vejnavn": "Toldbodgade", "husnnr": "6", "invalidepladser": 1, "bemrk": "Ud for svømmehallen", "ident": "1112", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:26.537", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 13:31:09.807", "mi_style": null, "mi_prinx": 242}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573871.8803781366, 6222609.255881792]},"properties": {"vejnavn": "Carl Bertelsens Gade", "husnnr": "3", "invalidepladser": 1, "bemrk": "I nærheden af Carl Bertelsens Gade nr. 3", "ident": "1113", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:26.567", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:26.567", "mi_style": null, "mi_prinx": 243}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574261.0265080002, 6223960.050931365]},"properties": {"vejnavn": "Jerichausgade", "husnnr": "24", "invalidepladser": 1, "bemrk": "I den eksisterende skråparkering ud for nr. 24", "ident": "1113", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:26.657", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:26.657", "mi_style": null, "mi_prinx": 245}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573354.775236487, 6224149.5423609335]},"properties": {"vejnavn": "Silkeborgvej", "husnnr": "108", "invalidepladser": 1, "bemrk": null, "ident": "1113", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:26.717", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:26.717", "mi_style": null, "mi_prinx": 246}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574302.3464337677, 6219824.742661404]},"properties": {"vejnavn": "Kridthøjtorvet", "husnnr": null, "invalidepladser": 1, "bemrk": null, "ident": "1113", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:26.763", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:26.763", "mi_style": null, "mi_prinx": 247}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574881.526291278, 6222643.79885067]},"properties": {"vejnavn": "Assensgade", "husnnr": "3", "invalidepladser": 1, "bemrk": null, "ident": "1114", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:26.92", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:26.92", "mi_style": null, "mi_prinx": 248}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574120.6245171713, 6222766.663841857]},"properties": {"vejnavn": "Ingerslev Boulevard", "husnnr": "19", "invalidepladser": 1, "bemrk": "I nærheden af Ingerslev Boulevard nr. 19", "ident": "1114", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:27.0", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:27.0", "mi_style": null, "mi_prinx": 250}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574835.6134302375, 6222775.322079497]},"properties": {"vejnavn": "Hans Broges Gade", "husnnr": "17", "invalidepladser": 2, "bemrk": "Borger ønsker pladsen tidsbegrænset, da det er ved arbejdspladsen", "ident": "1116", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:27.083", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:27.083", "mi_style": null, "mi_prinx": 252}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575090.5666900271, 6223833.916605643]},"properties": {"vejnavn": "Østergade", "husnnr": "35", "invalidepladser": 1, "bemrk": null, "ident": "1116", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:27.143", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:27.143", "mi_style": null, "mi_prinx": 253}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575371.6015553251, 6224793.341317518]},"properties": {"vejnavn": "Helgenæsgade", "husnnr": "8", "invalidepladser": 1, "bemrk": null, "ident": "1116", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:27.187", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:27.187", "mi_style": null, "mi_prinx": 254}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574443.9523178637, 6224528.715181402]},"properties": {"vejnavn": "Sejrøgade", "husnnr": "11", "invalidepladser": 1, "bemrk": "I nærheden af Sejrøgade nr.11", "ident": "1116", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:27.243", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:27.243", "mi_style": null, "mi_prinx": 255}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575462.4460219346, 6224699.380442982]},"properties": {"vejnavn": "Kystvejen", "husnnr": "55", "invalidepladser": 3, "bemrk": "Den ene af tre eksisterende HC-pladser ud for nr. 53-55 tidsbegrænset fra kl.8.00-14.00", "ident": "1118", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:27.29", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:27.29", "mi_style": null, "mi_prinx": 256}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [572618.3471282512, 6224015.439657151]},"properties": {"vejnavn": "Silkeborgvej", "husnnr": "226", "invalidepladser": 1, "bemrk": null, "ident": "gl", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:27.343", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:27.343", "mi_style": null, "mi_prinx": 257}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [572934.9133366208, 6219773.593072755]},"properties": {"vejnavn": "Rundhøj Allé", "husnnr": "137", "invalidepladser": 1, "bemrk": null, "ident": "gl", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:27.393", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:27.393", "mi_style": null, "mi_prinx": 258}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [572966.1156114371, 6219796.788351424]},"properties": {"vejnavn": "Rundhøj Allé", "husnnr": "135", "invalidepladser": 1, "bemrk": null, "ident": "gl", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:27.453", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:27.453", "mi_style": null, "mi_prinx": 259}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573958.7998228613, 6222500.128094437]},"properties": {"vejnavn": "P.P. Ørums Gade", "husnnr": "9", "invalidepladser": 1, "bemrk": null, "ident": "gl", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:27.513", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:27.513", "mi_style": null, "mi_prinx": 260}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574108.2557507273, 6222343.6199512165]},"properties": {"vejnavn": "P.P. Ørums Gade", "husnnr": "2", "invalidepladser": 2, "bemrk": null, "ident": "gl", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:27.57", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:27.57", "mi_style": null, "mi_prinx": 261}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574964.7928269794, 6222704.936406298]},"properties": {"vejnavn": "Strandparken", "husnnr": "36", "invalidepladser": 1, "bemrk": null, "ident": "gl", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:27.613", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:27.613", "mi_style": null, "mi_prinx": 262}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574986.6525602082, 6222771.112936256]},"properties": {"vejnavn": "Strandparken", "husnnr": "29", "invalidepladser": 1, "bemrk": null, "ident": "gl", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:27.65", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:27.65", "mi_style": null, "mi_prinx": 263}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574174.5193554903, 6222819.103167984]},"properties": {"vejnavn": "Ingerslevs Boulevard", "husnnr": "1", "invalidepladser": 1, "bemrk": null, "ident": "gl", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:27.7", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:27.7", "mi_style": null, "mi_prinx": 264}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574259.3031265422, 6222874.021989416]},"properties": {"vejnavn": "Lundinsgade", "husnnr": "1", "invalidepladser": 1, "bemrk": null, "ident": "gl", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:27.753", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:27.753", "mi_style": null, "mi_prinx": 265}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574732.0621175678, 6222787.729553992]},"properties": {"vejnavn": "Tietgens Plads", "husnnr": "11", "invalidepladser": 1, "bemrk": "Efter henvenddelse fra Pia Møller", "ident": "gl", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:27.81", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:27.81", "mi_style": null, "mi_prinx": 266}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574820.7791563489, 6223119.082108137]},"properties": {"vejnavn": "Brammersgade", "husnnr": "21", "invalidepladser": 1, "bemrk": null, "ident": "gl", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:27.857", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:27.857", "mi_style": null, "mi_prinx": 267}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574401.956232864, 6223179.749759412]},"properties": {"vejnavn": "Godthåbsgade", "husnnr": null, "invalidepladser": 1, "bemrk": "Overfor nr. 2", "ident": "gl", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:27.963", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:27.963", "mi_style": null, "mi_prinx": 268}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574564.0530400358, 6223225.930359485]},"properties": {"vejnavn": "Dybbølsgade", "husnnr": "15", "invalidepladser": 1, "bemrk": null, "ident": "gl", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:28.01", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:28.01", "mi_style": null, "mi_prinx": 269}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574140.167168153, 6223217.512073003]},"properties": {"vejnavn": "Absolonsgade", "husnnr": "28", "invalidepladser": 2, "bemrk": null, "ident": "gl", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:28.043", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:28.043", "mi_style": null, "mi_prinx": 270}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574275.7206025358, 6223430.478724257]},"properties": {"vejnavn": "Sonnesgade", "husnnr": "7", "invalidepladser": 3, "bemrk": null, "ident": "gl", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:28.083", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:28.083", "mi_style": null, "mi_prinx": 271}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574256.1861973983, 6223461.63238302]},"properties": {"vejnavn": "Echersbergsgade", "husnnr": "43", "invalidepladser": 2, "bemrk": null, "ident": "gl", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:28.15", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:28.15", "mi_style": null, "mi_prinx": 273}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574374.357392005, 6223467.071275949]},"properties": {"vejnavn": "Valdemarsgade", "husnnr": "28", "invalidepladser": 1, "bemrk": null, "ident": "gl", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:28.187", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:28.187", "mi_style": null, "mi_prinx": 274}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574769.5764453339, 6223465.5386415245]},"properties": {"vejnavn": "Banegårdspladsen", "husnnr": "17", "invalidepladser": 2, "bemrk": null, "ident": "gl", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:28.223", "rettet_af": "spatial_reader", "rettet_dato": "2025-07-31 09:53:06.79", "mi_style": null, "mi_prinx": 275}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574924.5695985033, 6223516.741165786]},"properties": {"vejnavn": "Ny Banegårdsgade", "husnnr": "40", "invalidepladser": 2, "bemrk": "Overfor nr. 45", "ident": "gl", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:28.26", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:28.26", "mi_style": null, "mi_prinx": 276}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575241.6470492193, 6223772.769052051]},"properties": {"vejnavn": "Ridderstræde", "husnnr": null, "invalidepladser": 1, "bemrk": "Overfor nr 1", "ident": "gl", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:28.3", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:28.3", "mi_style": null, "mi_prinx": 277}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575132.5344444042, 6223962.394105587]},"properties": {"vejnavn": "Fiskergade", "husnnr": "84", "invalidepladser": 2, "bemrk": null, "ident": "gl", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:28.367", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 14:17:48.05", "mi_style": null, "mi_prinx": 279}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574746.0553153381, 6224061.31032031]},"properties": {"vejnavn": "Christiansgade", "husnnr": "29S", "invalidepladser": 3, "bemrk": null, "ident": "gl", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:28.437", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:28.437", "mi_style": null, "mi_prinx": 281}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575181.3781732596, 6224118.438691995]},"properties": {"vejnavn": "Teatergaden", "husnnr": null, "invalidepladser": 3, "bemrk": "Sydlig endeaf vejen, på nordlig side", "ident": "E-8686", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:28.473", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:28.473", "mi_style": null, "mi_prinx": 282}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575222.3270360337, 6224141.414015435]},"properties": {"vejnavn": "Teatergaden", "husnnr": null, "invalidepladser": 4, "bemrk": "Nordlig ende af vejen , nordlig side", "ident": "E-8686", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:28.51", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:28.51", "mi_style": null, "mi_prinx": 283}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574737.7847335092, 6224144.713343865]},"properties": {"vejnavn": "Grønnegade", "husnnr": "5", "invalidepladser": 1, "bemrk": null, "ident": "gl", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:28.587", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:28.587", "mi_style": null, "mi_prinx": 285}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574634.6704505871, 6224881.683335755]},"properties": {"vejnavn": "Falstergade", "husnnr": "1", "invalidepladser": 1, "bemrk": null, "ident": "gl", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:28.66", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:28.66", "mi_style": null, "mi_prinx": 287}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573664.0273809661, 6224806.278684154]},"properties": {"vejnavn": "Eugen Warmingsvej", "husnnr": "12", "invalidepladser": 2, "bemrk": "Overfor nr. 39", "ident": "gl", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:28.703", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:28.703", "mi_style": null, "mi_prinx": 288}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573900.8397833044, 6224443.072613699]},"properties": {"vejnavn": "Eugen Warmingsvej", "husnnr": "6", "invalidepladser": 2, "bemrk": null, "ident": "gl", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:28.74", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:28.74", "mi_style": null, "mi_prinx": 289}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573876.0610211948, 6224382.904860672]},"properties": {"vejnavn": "Ringkøbingvej", "husnnr": "33", "invalidepladser": 1, "bemrk": null, "ident": "gl", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:28.777", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:28.777", "mi_style": null, "mi_prinx": 290}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573858.2335058267, 6224344.252728201]},"properties": {"vejnavn": "Ringkøbingvej", "husnnr": "27", "invalidepladser": 1, "bemrk": null, "ident": "gl", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:28.81", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:28.81", "mi_style": null, "mi_prinx": 291}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574637.7049212881, 6224717.846684231]},"properties": {"vejnavn": "Hjarnøgade", "husnnr": "5", "invalidepladser": 2, "bemrk": "Overfor nr 5", "ident": "gl", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:28.843", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:28.843", "mi_style": null, "mi_prinx": 292}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574863.3524504495, 6224285.3847106155]},"properties": {"vejnavn": "Vestergade", "husnnr": "22", "invalidepladser": 1, "bemrk": null, "ident": "gl", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:28.88", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:28.88", "mi_style": null, "mi_prinx": 293}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574537.1138667205, 6224140.554190449]},"properties": {"vejnavn": "Møllegade", "husnnr": "1", "invalidepladser": 1, "bemrk": null, "ident": "gl", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:28.917", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:28.917", "mi_style": null, "mi_prinx": 294}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575074.9490609304, 6224661.438166022]},"properties": {"vejnavn": "Anholtsgade", "husnnr": "6", "invalidepladser": 1, "bemrk": null, "ident": "gl", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:28.963", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:28.963", "mi_style": null, "mi_prinx": 295}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [572960.45896225, 6225756.165337472]},"properties": {"vejnavn": "Musvågevej", "husnnr": "4", "invalidepladser": 2, "bemrk": null, "ident": "gl", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:29.073", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:29.073", "mi_style": null, "mi_prinx": 296}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575340.1766427128, 6224351.371279241]},"properties": {"vejnavn": "Olufgade", "husnnr": "3", "invalidepladser": 1, "bemrk": "Tidsbegrænset", "ident": "gl", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:29.113", "rettet_af": "spatial_reader", "rettet_dato": "2025-07-31 10:00:13.91", "mi_style": null, "mi_prinx": 297}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573871.0393020185, 6222888.768987707]},"properties": {"vejnavn": "Max Müllers Gade", "husnnr": "13", "invalidepladser": 1, "bemrk": null, "ident": "gl", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:29.153", "rettet_af": "spatial_reader", "rettet_dato": "2020-03-17 08:09:34.883", "mi_style": null, "mi_prinx": 298}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574914.8559939226, 6222594.038979148]},"properties": {"vejnavn": "Hendrik Pontoppidans Gade", "husnnr": "34", "invalidepladser": 1, "bemrk": "5x3,5", "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:29.19", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:19.733", "mi_style": null, "mi_prinx": 299}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575638.25, 6226153.625]},"properties": {"vejnavn": "Skovvangsvej", "husnnr": "222", "invalidepladser": 1, "bemrk": "5x3,5", "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:29.26", "rettet_af": "spatial_reader", "rettet_dato": "2020-03-23 06:56:12.1", "mi_style": null, "mi_prinx": 301}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574462.8600388346, 6226572.059264624]},"properties": {"vejnavn": "Stockholmsgade", "husnnr": "1", "invalidepladser": 1, "bemrk": "5x2,5", "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:29.293", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:19.97", "mi_style": null, "mi_prinx": 302}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574497.212226172, 6224409.829380264]},"properties": {"vejnavn": "Teglværksgade", "husnnr": "3", "invalidepladser": 1, "bemrk": "Til højre for porten", "ident": "1124", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:29.38", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:20.12", "mi_style": null, "mi_prinx": 304}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575140.6024732155, 6224850.239736008]},"properties": {"vejnavn": "Høegh Guldbergs Gade", "husnnr": "45", "invalidepladser": 1, "bemrk": null, "ident": "1130", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:29.423", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:20.197", "mi_style": null, "mi_prinx": 305}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574098.9791758942, 6222367.355119992]},"properties": {"vejnavn": "P. P. Ørumsgade", "husnnr": "6", "invalidepladser": 1, "bemrk": null, "ident": "1127", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:29.467", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:20.267", "mi_style": null, "mi_prinx": 306}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573984.3949235562, 6222175.364199189]},"properties": {"vejnavn": "Ellemarksvej", "husnnr": null, "invalidepladser": 1, "bemrk": null, "ident": "1129", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:29.507", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:20.337", "mi_style": null, "mi_prinx": 307}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574502.2421911926, 6222857.645322839]},"properties": {"vejnavn": "Ingerslev Torv", "husnnr": "9", "invalidepladser": 1, "bemrk": null, "ident": "1133", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:29.543", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-10 10:03:19.153", "mi_style": null, "mi_prinx": 308}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574505.5487747552, 6222858.265196665]},"properties": {"vejnavn": "Ingerslev Torv", "husnnr": "9", "invalidepladser": 1, "bemrk": null, "ident": "1133", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:29.57", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-10 10:03:07.203", "mi_style": null, "mi_prinx": 309}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574509.0697502696, 6222858.8850704925]},"properties": {"vejnavn": "Ingerslev Torv", "husnnr": "9", "invalidepladser": 1, "bemrk": null, "ident": "1133", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:29.6", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-10 10:02:53.353", "mi_style": null, "mi_prinx": 310}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574737.586833246, 6222612.475226503]},"properties": {"vejnavn": "Assensgade", "husnnr": "19", "invalidepladser": 1, "bemrk": null, "ident": "1121", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:29.633", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:20.67", "mi_style": null, "mi_prinx": 311}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574719.5036967049, 6222608.076121928]},"properties": {"vejnavn": "Assensgade", "husnnr": "21", "invalidepladser": 2, "bemrk": null, "ident": "1128", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:29.677", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:20.737", "mi_style": null, "mi_prinx": 312}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [576416.2510775031, 6232254.552609537]},"properties": {"vejnavn": "Lystruplund", "husnnr": null, "invalidepladser": 1, "bemrk": "Ud for børnehavens indgang", "ident": "1123", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:29.717", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:20.81", "mi_style": null, "mi_prinx": 313}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573121.6899557706, 6220138.458805391]},"properties": {"vejnavn": "Rundhøj Alle", "husnnr": "61", "invalidepladser": 1, "bemrk": null, "ident": "1133", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:29.753", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:20.883", "mi_style": null, "mi_prinx": 314}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [576412.5899226356, 6232262.860918405]},"properties": {"vejnavn": "Lystruplund", "husnnr": null, "invalidepladser": 1, "bemrk": "Ud for børnehavens indgang", "ident": "1123", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:29.783", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:20.953", "mi_style": null, "mi_prinx": 315}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575079.1956707429, 6224575.955565759]},"properties": {"vejnavn": "Borggade", "husnnr": "16", "invalidepladser": 1, "bemrk": "Efter henvenddelse fra Pia Møller", "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:29.86", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:21.13", "mi_style": null, "mi_prinx": 317}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574136.9018138117, 6222534.351128438]},"properties": {"vejnavn": "Chr. Wærumsgade", "husnnr": "29", "invalidepladser": 1, "bemrk": "Efter henvenddelse fra Pia Møller", "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:29.943", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:21.277", "mi_style": null, "mi_prinx": 319}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573894.8368086569, 6224475.935924468]},"properties": {"vejnavn": "Eugen Warmingsvej", "husnnr": "6", "invalidepladser": 2, "bemrk": "Efter henvenddelse fra Pia Møller", "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:30.007", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:21.347", "mi_style": null, "mi_prinx": 320}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [576295.1526081712, 6228305.306467168]},"properties": {"vejnavn": "Fortebakken", "husnnr": "34A", "invalidepladser": 1, "bemrk": "Efter henvenddelse fra Pia Møller", "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:30.047", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:21.417", "mi_style": null, "mi_prinx": 321}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575393.7251555714, 6223907.781570643]},"properties": {"vejnavn": "Hack Kampmanns plads", "husnnr": "2", "invalidepladser": 3, "bemrk": "Efter henvenddelse fra Pia Møller", "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:30.09", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:21.487", "mi_style": null, "mi_prinx": 322}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574911.6071312699, 6222880.060760242]},"properties": {"vejnavn": "Hendrik Pontopidans gade", "husnnr": "2", "invalidepladser": 1, "bemrk": "Efter henvenddelse fra Pia Møller", "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:30.123", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:21.56", "mi_style": null, "mi_prinx": 323}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575107.1408370622, 6226017.862069859]},"properties": {"vejnavn": "Herambsgade", "husnnr": "5", "invalidepladser": 1, "bemrk": "Efter henvenddelse fra Pia Møller", "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:30.16", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:21.6", "mi_style": null, "mi_prinx": 324}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575153.6061696704, 6211381.751207897]},"properties": {"vejnavn": "Mallingsgårdsvej", "husnnr": "137", "invalidepladser": 1, "bemrk": "Efter henvenddelse fra Pia Møller", "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:30.19", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:21.65", "mi_style": null, "mi_prinx": 325}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573888.9575216738, 6222869.90282786]},"properties": {"vejnavn": "Max Mullers Gade", "husnnr": "9", "invalidepladser": 1, "bemrk": "Efter henvenddelse fra Pia Møller", "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:30.227", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:21.71", "mi_style": null, "mi_prinx": 326}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574546.3132659666, 6223169.7029371355]},"properties": {"vejnavn": "Montaangade", "husnnr": "8", "invalidepladser": 1, "bemrk": "Efter henvenddelse fra Pia Møller", "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:30.263", "rettet_af": "spatial_reader", "rettet_dato": "2025-07-24 12:58:27.443", "mi_style": null, "mi_prinx": 327}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573574.4692660668, 6222862.3343683975]},"properties": {"vejnavn": "Nordborg Gade", "husnnr": "41", "invalidepladser": 1, "bemrk": "Efter henvenddelse fra Pia Møller", "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:30.3", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:21.947", "mi_style": null, "mi_prinx": 328}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574323.8351040032, 6223091.617698438]},"properties": {"vejnavn": "Ole Rømers Gade", "husnnr": "38", "invalidepladser": 1, "bemrk": "Efter henvenddelse fra Pia Møller", "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:30.333", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:22.02", "mi_style": null, "mi_prinx": 329}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574564.1684818559, 6223099.706052078]},"properties": {"vejnavn": "Ole Rømers Gade", "husnnr": "63", "invalidepladser": 1, "bemrk": "Efter henvenddelse fra Pia Møller", "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:30.373", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:22.09", "mi_style": null, "mi_prinx": 330}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573623.1032557249, 6222316.575456046]},"properties": {"vejnavn": "Rudolp Wulffs Gade", "husnnr": "9", "invalidepladser": 1, "bemrk": "Efter henvenddelse fra Pia Møller", "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:30.473", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:22.17", "mi_style": null, "mi_prinx": 331}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [572704.5079553006, 6226851.832317628]},"properties": {"vejnavn": "Sandkåsvej", "husnnr": "27", "invalidepladser": 1, "bemrk": "Efter henvenddelse fra Pia Møller", "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:30.51", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:22.22", "mi_style": null, "mi_prinx": 332}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574883.422835466, 6227413.9079087665]},"properties": {"vejnavn": "Solhvervsvej", "husnnr": "22", "invalidepladser": 1, "bemrk": "Efter henvenddelse fra Pia Møller", "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:30.547", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:22.29", "mi_style": null, "mi_prinx": 333}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574839.5219604338, 6224676.74505035]},"properties": {"vejnavn": "Thunøgade", "husnnr": "21", "invalidepladser": 1, "bemrk": "Efter henvenddelse fra Pia Møller", "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:30.59", "rettet_af": "spatial_reader", "rettet_dato": "2020-03-17 08:26:13.553", "mi_style": null, "mi_prinx": 334}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574010.542495819, 6222959.064679222]},"properties": {"vejnavn": "Trepkasgade", "husnnr": "6", "invalidepladser": 1, "bemrk": "Efter henvenddelse fra Pia Møller", "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:30.64", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:22.437", "mi_style": null, "mi_prinx": 335}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573839.0454261499, 6225405.03680867]},"properties": {"vejnavn": "Jens Baggesens Vej", "husnnr": "78", "invalidepladser": 1, "bemrk": "Efter henvenddelse fra Pia Møller", "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:30.68", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:22.533", "mi_style": null, "mi_prinx": 336}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574665.6000000001, 6227253.1000000015]},"properties": {"vejnavn": "Vorregårds Allé", "husnnr": "95", "invalidepladser": 1, "bemrk": "Efter henvenddelse fra Pia Møller", "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:30.717", "rettet_af": "spatial_reader", "rettet_dato": "2020-03-17 10:50:45.603", "mi_style": null, "mi_prinx": 337}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574079.8900463488, 6222655.326504249]},"properties": {"vejnavn": "Ålborgade", "husnnr": "30", "invalidepladser": 1, "bemrk": "Efter henvenddelse fra Pia Møller", "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:30.753", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:22.66", "mi_style": null, "mi_prinx": 338}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575257.8748707939, 6225740.82845925]},"properties": {"vejnavn": "Niels Juels Gade", "husnnr": "86", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:30.79", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:22.73", "mi_style": "Symbol (34, 16720127, 14)", "mi_prinx": 339}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575579.6936819801, 6225552.636765125]},"properties": {"vejnavn": "Trøjborgvej", "husnnr": null, "invalidepladser": 1, "bemrk": "Ud for Kochs Skole", "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:30.86", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:22.893", "mi_style": "Symbol (34, 16720127, 14)", "mi_prinx": 341}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575354.5079200993, 6225296.238954158]},"properties": {"vejnavn": "Kirkegårdsvej", "husnnr": "53", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:30.9", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:22.95", "mi_style": "Symbol (34, 16720127, 14)", "mi_prinx": 342}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575673.3747190277, 6225441.769331871]},"properties": {"vejnavn": "Skovvejen", "husnnr": "44B", "invalidepladser": 2, "bemrk": null, "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:30.953", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:23.047", "mi_style": "Symbol (34, 16720127, 14)", "mi_prinx": 343}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575589.1104361663, 6225071.994598448]},"properties": {"vejnavn": "Skovvejen", "husnnr": "19B", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:31.007", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:23.12", "mi_style": "Symbol (34, 16720127, 14)", "mi_prinx": 344}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575246.1905094264, 6225228.322778299]},"properties": {"vejnavn": "Peter Sabroes Gade", "husnnr": "2-4", "invalidepladser": 10, "bemrk": null, "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:31.04", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:23.21", "mi_style": "Symbol (34, 16720127, 14)", "mi_prinx": 345}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575188.106782205, 6225234.641492143]},"properties": {"vejnavn": "Hospitalsgaden", "husnnr": null, "invalidepladser": 3, "bemrk": null, "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:31.08", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:23.3", "mi_style": "Symbol (34, 16720127, 14)", "mi_prinx": 346}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575106.3244984768, 6225400.537724445]},"properties": {"vejnavn": "Hospitalsgaden", "husnnr": null, "invalidepladser": 4, "bemrk": null, "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:31.117", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:23.37", "mi_style": "Symbol (34, 16720127, 14)", "mi_prinx": 347}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575064.3119217885, 6225293.259560605]},"properties": {"vejnavn": "Hospitalsgaden", "husnnr": null, "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:31.16", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:23.437", "mi_style": "Symbol (34, 16720127, 14)", "mi_prinx": 348}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575109.6475737281, 6225313.485443685]},"properties": {"vejnavn": "Hospitalsgaden", "husnnr": null, "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:31.193", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:23.503", "mi_style": "Symbol (34, 16720127, 14)", "mi_prinx": 349}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575068.0720267874, 6225440.379614743]},"properties": {"vejnavn": "Hospitalsgaden", "husnnr": null, "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:31.223", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:23.567", "mi_style": "Symbol (34, 16720127, 14)", "mi_prinx": 350}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575014.441055486, 6225637.589473247]},"properties": {"vejnavn": "Hospitalsgaden", "husnnr": null, "invalidepladser": 5, "bemrk": null, "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:31.273", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:23.637", "mi_style": "Symbol (34, 16720127, 14)", "mi_prinx": 351}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574422.6368103585, 6225613.944286156]},"properties": {"vejnavn": "Victor Albecks Vej", "husnnr": "1", "invalidepladser": 2, "bemrk": null, "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:31.303", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:23.71", "mi_style": "Symbol (34, 16720127, 14)", "mi_prinx": 352}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574900.5989291347, 6225286.400956654]},"properties": {"vejnavn": "Vennelyst Boulevard", "husnnr": "4", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:31.34", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:23.78", "mi_style": "Symbol (34, 16720127, 14)", "mi_prinx": 353}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574878.0960200508, 6225366.764598867]},"properties": {"vejnavn": "Bartholins Allé", "husnnr": null, "invalidepladser": 1, "bemrk": "V/Bartholinbygningen", "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:31.373", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:23.847", "mi_style": "Symbol (34, 16720127, 14)", "mi_prinx": 354}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574170.8004797128, 6225423.143123182]},"properties": {"vejnavn": "Gustav Wieds Vej", "husnnr": "14", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:31.41", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:23.913", "mi_style": "Symbol (34, 16720127, 14)", "mi_prinx": 355}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575117.8851721799, 6224865.706587776]},"properties": {"vejnavn": "Høegh-Guldbergs Gade", "husnnr": "49", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:31.473", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:24.033", "mi_style": "Symbol (34, 16720127, 14)", "mi_prinx": 357}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574990.5281070274, 6224945.140419249]},"properties": {"vejnavn": "Høegh-Guldbergs Gade", "husnnr": "6A", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:31.51", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:24.103", "mi_style": "Symbol (34, 16720127, 14)", "mi_prinx": 358}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574350.6093604325, 6224544.851896821]},"properties": {"vejnavn": "Langelandsgade", "husnnr": "41", "invalidepladser": 2, "bemrk": null, "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:31.597", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:24.153", "mi_style": "Symbol (34, 16720127, 14)", "mi_prinx": 359}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574519.1874012209, 6224508.419312567]},"properties": {"vejnavn": "Teglværksgade", "husnnr": "17", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:31.63", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:24.28", "mi_style": "Symbol (34, 16720127, 14)", "mi_prinx": 360}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574525.4130136644, 6224532.194473202]},"properties": {"vejnavn": "Teglværksgade", "husnnr": "19", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:31.667", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:24.357", "mi_style": "Symbol (34, 16720127, 14)", "mi_prinx": 361}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573850.8204918046, 6224325.876468635]},"properties": {"vejnavn": "Ringkøbingvej", "husnnr": "25", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:31.757", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:24.57", "mi_style": "Symbol (34, 16720127, 14)", "mi_prinx": 364}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573842.8467603703, 6224172.757635531]},"properties": {"vejnavn": "Ringkøbingvej", "husnnr": "1", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:31.787", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:24.62", "mi_style": "Symbol (34, 16720127, 14)", "mi_prinx": 365}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573685.0130546996, 6224142.763740702]},"properties": {"vejnavn": "Regenburgs Plads", "husnnr": "1", "invalidepladser": 2, "bemrk": null, "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:31.817", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:24.683", "mi_style": "Symbol (34, 16720127, 14)", "mi_prinx": 366}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573708.2663356145, 6223856.911925012]},"properties": {"vejnavn": "Åparken", "husnnr": "4", "invalidepladser": 2, "bemrk": null, "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:31.847", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:24.737", "mi_style": "Symbol (34, 16720127, 14)", "mi_prinx": 367}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573789.7847523252, 6223920.838912859]},"properties": {"vejnavn": "Åparken", "husnnr": "3", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:31.88", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:24.803", "mi_style": "Symbol (34, 16720127, 14)", "mi_prinx": 368}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574850.3899832161, 6222925.211569925]},"properties": {"vejnavn": "Odensegade", "husnnr": "6", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:31.923", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:24.9", "mi_style": "Symbol (34, 16720127, 14)", "mi_prinx": 369}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574954.056737706, 6223018.042674422]},"properties": {"vejnavn": "Marselisborg Allé", "husnnr": "18", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:31.953", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:24.97", "mi_style": "Symbol (34, 16720127, 14)", "mi_prinx": 370}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574731.5426293771, 6223104.335109847]},"properties": {"vejnavn": "Sankt Pauls Gade", "husnnr": "4", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:31.987", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:25.04", "mi_style": "Symbol (34, 16720127, 14)", "mi_prinx": 371}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574744.3401797245, 6223104.785018269]},"properties": {"vejnavn": "Sankt Pauls Gade", "husnnr": "6", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:32.027", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:25.113", "mi_style": "Symbol (34, 16720127, 14)", "mi_prinx": 372}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574725.6138673283, 6222733.070679648]},"properties": {"vejnavn": "J. Michaelsens Gade", "husnnr": "8", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:32.123", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:25.31", "mi_style": "Symbol (34, 16720127, 14)", "mi_prinx": 375}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574543.1745622781, 6223191.127443518]},"properties": {"vejnavn": "Montanagade", "husnnr": "4A", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:32.153", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:25.35", "mi_style": "Symbol (34, 16720127, 14)", "mi_prinx": 376}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574802.1600399285, 6223111.60363036]},"properties": {"vejnavn": "Brammersgade", "husnnr": "18", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:32.187", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:25.393", "mi_style": "Symbol (34, 16720127, 14)", "mi_prinx": 377}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574870.3036971911, 6223125.000903384]},"properties": {"vejnavn": "Brammersgade", "husnnr": null, "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:32.217", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:25.43", "mi_style": "Symbol (34, 16720127, 14)", "mi_prinx": 378}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574949.7603455347, 6223146.6087693]},"properties": {"vejnavn": "St. St. Blichers Gade", "husnnr": "28", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:32.257", "rettet_af": "spatial_reader", "rettet_dato": "2025-07-31 10:03:17.84", "mi_style": "Symbol (34, 16720127, 14)", "mi_prinx": 379}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574131.5007857978, 6222588.660074009]},"properties": {"vejnavn": "Chr. Wærums Gade", "husnnr": "21", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:32.293", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:25.507", "mi_style": "Symbol (34, 16720127, 14)", "mi_prinx": 380}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574200.5290566034, 6222565.141509435]},"properties": {"vejnavn": "Stadion Allé", "husnnr": "24", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:32.327", "rettet_af": "spatial_reader", "rettet_dato": "2026-03-24 13:56:15.127", "mi_style": "Symbol (34, 16720127, 14)", "mi_prinx": 381}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574191.027535771, 6222648.197955245]},"properties": {"vejnavn": "Stadion Allé", "husnnr": "14", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:32.36", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:25.58", "mi_style": "Symbol (34, 16720127, 14)", "mi_prinx": 382}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574193.9630563403, 6222718.033740373]},"properties": {"vejnavn": "Stadion Allé", "husnnr": "7", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:32.39", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:25.617", "mi_style": "Symbol (34, 16720127, 14)", "mi_prinx": 383}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575232.5353912722, 6224544.841898856]},"properties": {"vejnavn": "Studsgade", "husnnr": "38", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:32.423", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:25.673", "mi_style": "Symbol (34, 16720127, 14)", "mi_prinx": 384}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574716.4527343153, 6224380.4153674]},"properties": {"vejnavn": "Klostergade", "husnnr": "78", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:32.457", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:25.71", "mi_style": "Symbol (34, 16720127, 14)", "mi_prinx": 385}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574748.306430831, 6224145.5731688505]},"properties": {"vejnavn": "Grønnegade", "husnnr": "4", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:32.497", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:25.747", "mi_style": "Symbol (34, 16720127, 14)", "mi_prinx": 386}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574797.3197293266, 6224474.496217515]},"properties": {"vejnavn": "Gammel Munkegade", "husnnr": "6", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:32.863", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:25.827", "mi_style": "Symbol (34, 16720127, 14)", "mi_prinx": 388}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574841.4597338435, 6224276.456527921]},"properties": {"vejnavn": "Vestergade", "husnnr": "11", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:32.897", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:25.863", "mi_style": "Symbol (34, 16720127, 14)", "mi_prinx": 389}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575014.8203643236, 6224302.431240844]},"properties": {"vejnavn": "Badstuegade", "husnnr": "1", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:32.927", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:25.9", "mi_style": "Symbol (34, 16720127, 14)", "mi_prinx": 390}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574934.1924987969, 6223330.958981213]},"properties": {"vejnavn": "M.P. Bruuns Gade", "husnnr": "25", "invalidepladser": 2, "bemrk": null, "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:32.957", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:25.933", "mi_style": "Symbol (34, 16720127, 14)", "mi_prinx": 391}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574915.3095153589, 6223254.954451715]},"properties": {"vejnavn": "Jægergårdsgade", "husnnr": "124", "invalidepladser": 1, "bemrk": "8-16", "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:32.997", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:25.97", "mi_style": "Symbol (34, 16720127, 14)", "mi_prinx": 392}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574915.6393491307, 6223263.812648655]},"properties": {"vejnavn": "Jægergårdsgade", "husnnr": "97", "invalidepladser": 1, "bemrk": "8-16", "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:33.043", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:26.007", "mi_style": "Symbol (34, 16720127, 14)", "mi_prinx": 393}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574488.7107607027, 6223237.937915382]},"properties": {"vejnavn": "Istedgade", "husnnr": "14", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:33.077", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:26.043", "mi_style": "Symbol (34, 16720127, 14)", "mi_prinx": 394}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574767.2962480201, 6223464.91676953]},"properties": {"vejnavn": "Banegårdspladsen", "husnnr": "1", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:33.19", "rettet_af": "spatial_reader", "rettet_dato": "2025-07-31 09:52:54.773", "mi_style": "Symbol (34, 16720127, 14)", "mi_prinx": 396}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574530.2173944163, 6223395.66940094]},"properties": {"vejnavn": "Kriegersvej", "husnnr": "11", "invalidepladser": 2, "bemrk": null, "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:33.22", "rettet_af": "spatial_reader", "rettet_dato": "2025-07-31 10:04:44.057", "mi_style": "Symbol (34, 16720127, 14)", "mi_prinx": 397}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574906.5854120937, 6223675.0989325205]},"properties": {"vejnavn": "Rosenkrantzgade", "husnnr": "24", "invalidepladser": 2, "bemrk": null, "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:33.257", "rettet_af": "spatial_reader", "rettet_dato": "2025-12-02 14:37:07.49", "mi_style": "Symbol (34, 16720127, 14)", "mi_prinx": 398}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575020.6317082599, 6224083.022794313]},"properties": {"vejnavn": "Fiskergade", "husnnr": "2", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:33.287", "rettet_af": "spatial_reader", "rettet_dato": "2025-07-31 09:55:01.553", "mi_style": "Symbol (34, 16720127, 14)", "mi_prinx": 399}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574872.5218293066, 6223967.619390828]},"properties": {"vejnavn": "Telefonsmøgen", "husnnr": null, "invalidepladser": 3, "bemrk": null, "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:33.327", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:26.6", "mi_style": "Symbol (34, 16720127, 14)", "mi_prinx": 400}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574997.9, 6222462.25]},"properties": {"vejnavn": "Adolph Meyers Vej", "husnnr": null, "invalidepladser": 1, "bemrk": "Ud mod Strandvejen", "ident": "1196", "oprettet_af": "spatial_reader", "oprettet_dato": "2020-03-16 11:55:35.953", "rettet_af": "spatial_reader", "rettet_dato": "2020-03-16 12:00:59.113", "mi_style": null, "mi_prinx": 404}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573880.2000000001, 6222878.7]},"properties": {"vejnavn": "Max Müllers Gade 11", "husnnr": "11", "invalidepladser": 1, "bemrk": null, "ident": "1169", "oprettet_af": "spatial_reader", "oprettet_dato": "2020-03-17 08:08:44.613", "rettet_af": "spatial_reader", "rettet_dato": "2020-03-17 08:08:44.613", "mi_style": null, "mi_prinx": 405}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573875.6000000001, 6222883.899999999]},"properties": {"vejnavn": "Max Müllers Gade", "husnnr": "13", "invalidepladser": 1, "bemrk": null, "ident": "1169", "oprettet_af": "spatial_reader", "oprettet_dato": "2020-03-17 08:11:20.153", "rettet_af": "spatial_reader", "rettet_dato": "2020-03-17 08:11:20.153", "mi_style": null, "mi_prinx": 406}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574233.0, 6226255.500000001]},"properties": {"vejnavn": "Brendstrupvej", "husnnr": "51", "invalidepladser": 1, "bemrk": null, "ident": "1171", "oprettet_af": "spatial_reader", "oprettet_dato": "2020-03-17 08:14:12.3", "rettet_af": "spatial_reader", "rettet_dato": "2020-03-17 08:14:12.3", "mi_style": null, "mi_prinx": 407}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573849.4, 6222996.65]},"properties": {"vejnavn": "Læssøegade", "husnnr": "24", "invalidepladser": 1, "bemrk": null, "ident": "1173", "oprettet_af": "spatial_reader", "oprettet_dato": "2020-03-17 08:18:31.19", "rettet_af": "spatial_reader", "rettet_dato": "2020-03-17 08:18:31.19", "mi_style": null, "mi_prinx": 408}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574396.7, 6224597.35]},"properties": {"vejnavn": "Skt. Marcus Kirkeplads", "husnnr": "6", "invalidepladser": 1, "bemrk": null, "ident": "1173", "oprettet_af": "spatial_reader", "oprettet_dato": "2020-03-17 08:21:54.81", "rettet_af": "spatial_reader", "rettet_dato": "2020-03-17 08:21:54.81", "mi_style": null, "mi_prinx": 409}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574845.2999999999, 6224678.449999999]},"properties": {"vejnavn": "Thunøgade 26B", "husnnr": "26B", "invalidepladser": 1, "bemrk": null, "ident": "1176", "oprettet_af": "spatial_reader", "oprettet_dato": "2020-03-17 08:25:55.553", "rettet_af": "spatial_reader", "rettet_dato": "2020-03-17 08:25:55.553", "mi_style": null, "mi_prinx": 410}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573925.4, 6222166.899999999]},"properties": {"vejnavn": "Ellemarksvej", "husnnr": "31", "invalidepladser": 1, "bemrk": null, "ident": "1181", "oprettet_af": "spatial_reader", "oprettet_dato": "2020-03-17 08:31:40.443", "rettet_af": "spatial_reader", "rettet_dato": "2020-03-17 08:31:40.443", "mi_style": null, "mi_prinx": 412}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [571908.4, 6223314.500000001]},"properties": {"vejnavn": "Henrik Hertz Vej", "husnnr": "54", "invalidepladser": 1, "bemrk": null, "ident": "1182", "oprettet_af": "spatial_reader", "oprettet_dato": "2020-03-17 08:34:51.437", "rettet_af": "spatial_reader", "rettet_dato": "2020-03-17 08:34:51.437", "mi_style": null, "mi_prinx": 413}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574719.1, 6223555.250000001]},"properties": {"vejnavn": "Johannes Bjergs Gade", "husnnr": "", "invalidepladser": 1, "bemrk": "På hjørnet ved Banegårdspladsen 14", "ident": "1185", "oprettet_af": "spatial_reader", "oprettet_dato": "2020-03-17 08:48:20.697", "rettet_af": "spatial_reader", "rettet_dato": "2020-03-17 08:48:20.697", "mi_style": null, "mi_prinx": 416}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575397.9500000001, 6225939.025]},"properties": {"vejnavn": "Ivar Huitfeldts Gade", "husnnr": "64A", "invalidepladser": 1, "bemrk": null, "ident": "1185", "oprettet_af": "spatial_reader", "oprettet_dato": "2020-03-17 08:51:46.78", "rettet_af": "spatial_reader", "rettet_dato": "2020-03-17 08:51:46.78", "mi_style": null, "mi_prinx": 417}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574223.2, 6222506.7]},"properties": {"vejnavn": "Stadion Allé", "husnnr": "29", "invalidepladser": 1, "bemrk": null, "ident": "1186", "oprettet_af": "spatial_reader", "oprettet_dato": "2020-03-17 08:54:59.317", "rettet_af": "spatial_reader", "rettet_dato": "2020-03-17 08:54:59.317", "mi_style": null, "mi_prinx": 418}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [576141.0, 6225269.5]},"properties": {"vejnavn": "Esther Aggebos Gade", "husnnr": "7", "invalidepladser": 1, "bemrk": null, "ident": "1186", "oprettet_af": "spatial_reader", "oprettet_dato": "2020-03-17 08:59:53.823", "rettet_af": "spatial_reader", "rettet_dato": "2020-03-17 08:59:53.823", "mi_style": null, "mi_prinx": 419}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [576136.6, 6225275.9]},"properties": {"vejnavn": "Esther Aggebos Gade", "husnnr": "7", "invalidepladser": 1, "bemrk": null, "ident": "1186", "oprettet_af": "spatial_reader", "oprettet_dato": "2020-03-17 09:00:00.397", "rettet_af": "spatial_reader", "rettet_dato": "2020-03-17 09:00:00.397", "mi_style": null, "mi_prinx": 420}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [576132.525, 6225282.1125]},"properties": {"vejnavn": "Esther Aggebos Gade", "husnnr": "7", "invalidepladser": 1, "bemrk": null, "ident": "1186", "oprettet_af": "spatial_reader", "oprettet_dato": "2020-03-17 09:00:19.683", "rettet_af": "spatial_reader", "rettet_dato": "2020-03-17 09:01:17.037", "mi_style": null, "mi_prinx": 421}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574134.4, 6222663.3500000015]},"properties": {"vejnavn": "Ålborggade", "husnnr": "16", "invalidepladser": 1, "bemrk": "på NV hjørnet ved Chr. Wærums Gade", "ident": "1187", "oprettet_af": "spatial_reader", "oprettet_dato": "2020-03-17 09:08:44.067", "rettet_af": "spatial_reader", "rettet_dato": "2020-03-17 09:08:44.067", "mi_style": null, "mi_prinx": 422}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573822.0, 6222563.450000001]},"properties": {"vejnavn": "P. P. Ørums Gade", "husnnr": "40", "invalidepladser": 1, "bemrk": null, "ident": "1187", "oprettet_af": "spatial_reader", "oprettet_dato": "2020-03-17 09:12:21.367", "rettet_af": "spatial_reader", "rettet_dato": "2020-03-17 09:12:21.367", "mi_style": null, "mi_prinx": 423}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [570801.2, 6216735.900000001]},"properties": {"vejnavn": "Kirketorvet", "husnnr": "14", "invalidepladser": 1, "bemrk": null, "ident": "1190", "oprettet_af": "spatial_reader", "oprettet_dato": "2020-03-17 09:14:51.303", "rettet_af": "spatial_reader", "rettet_dato": "2020-03-17 09:14:51.303", "mi_style": null, "mi_prinx": 424}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [570806.0, 6216734.500000001]},"properties": {"vejnavn": "Kirketorvet", "husnnr": "14", "invalidepladser": 1, "bemrk": null, "ident": "1190", "oprettet_af": "spatial_reader", "oprettet_dato": "2020-03-17 09:15:00.997", "rettet_af": "spatial_reader", "rettet_dato": "2020-03-17 09:15:00.997", "mi_style": null, "mi_prinx": 425}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574101.2, 6223033.899999999]},"properties": {"vejnavn": "Schleppegrellsgade", "husnnr": "2", "invalidepladser": 1, "bemrk": null, "ident": "1191", "oprettet_af": "spatial_reader", "oprettet_dato": "2020-03-17 09:19:45.767", "rettet_af": "spatial_reader", "rettet_dato": "2020-03-17 09:19:45.767", "mi_style": null, "mi_prinx": 426}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574902.6, 6222755.500000001]},"properties": {"vejnavn": "Hendrik Pontoppidans Gade", "husnnr": "18", "invalidepladser": 1, "bemrk": null, "ident": "1191", "oprettet_af": "spatial_reader", "oprettet_dato": "2020-03-17 09:22:33.383", "rettet_af": "spatial_reader", "rettet_dato": "2020-03-17 09:22:33.383", "mi_style": null, "mi_prinx": 427}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573502.0, 6224196.900000001]},"properties": {"vejnavn": "Regensburgsgade", "husnnr": "12", "invalidepladser": 1, "bemrk": null, "ident": "1191", "oprettet_af": "spatial_reader", "oprettet_dato": "2020-03-17 09:24:22.523", "rettet_af": "spatial_reader", "rettet_dato": "2020-03-17 09:25:10.057", "mi_style": null, "mi_prinx": 428}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574308.35, 6223515.425000001]},"properties": {"vejnavn": "Christen Købkes Gade", "husnnr": "6", "invalidepladser": 1, "bemrk": null, "ident": "1193", "oprettet_af": "spatial_reader", "oprettet_dato": "2020-03-17 09:27:59.887", "rettet_af": "spatial_reader", "rettet_dato": "2020-03-17 09:27:59.887", "mi_style": null, "mi_prinx": 430}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575200.2, 6224522.150000001]},"properties": {"vejnavn": "Studsgade", "husnnr": "22", "invalidepladser": 1, "bemrk": null, "ident": "1193", "oprettet_af": "spatial_reader", "oprettet_dato": "2020-03-17 09:29:06.1", "rettet_af": "spatial_reader", "rettet_dato": "2020-03-17 09:29:06.1", "mi_style": null, "mi_prinx": 431}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574790.4, 6222623.850000001]},"properties": {"vejnavn": "Assensgade", "husnnr": "13", "invalidepladser": 1, "bemrk": null, "ident": "1193", "oprettet_af": "spatial_reader", "oprettet_dato": "2020-03-17 09:31:34.91", "rettet_af": "spatial_reader", "rettet_dato": "2020-03-17 09:31:34.91", "mi_style": null, "mi_prinx": 432}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575263.2000000001, 6228819.3]},"properties": {"vejnavn": "Tværmarksvej", "husnnr": "91", "invalidepladser": 1, "bemrk": null, "ident": "1200", "oprettet_af": "spatial_reader", "oprettet_dato": "2020-03-17 09:36:06.61", "rettet_af": "spatial_reader", "rettet_dato": "2020-03-17 09:36:06.61", "mi_style": null, "mi_prinx": 433}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574008.1, 6225215.550000001]},"properties": {"vejnavn": "Chr. Molbechs Vej", "husnnr": "7", "invalidepladser": 1, "bemrk": null, "ident": "1202", "oprettet_af": "spatial_reader", "oprettet_dato": "2020-03-17 09:42:59.763", "rettet_af": "spatial_reader", "rettet_dato": "2020-03-17 09:42:59.763", "mi_style": null, "mi_prinx": 434}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575616.4500000001, 6226158.575000001]},"properties": {"vejnavn": "Skovvangsvej", "husnnr": "218", "invalidepladser": 1, "bemrk": "", "ident": "1203", "oprettet_af": "spatial_reader", "oprettet_dato": "2020-03-17 10:22:30.467", "rettet_af": "spatial_reader", "rettet_dato": "2020-03-17 10:22:30.467", "mi_style": null, "mi_prinx": 435}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574331.2000000001, 6227559.55]},"properties": {"vejnavn": "Vorregårds Allé", "husnnr": "125", "invalidepladser": 1, "bemrk": null, "ident": "1205", "oprettet_af": "spatial_reader", "oprettet_dato": "2020-03-17 10:27:08.61", "rettet_af": "spatial_reader", "rettet_dato": "2020-03-17 10:27:08.61", "mi_style": null, "mi_prinx": 436}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574076.6, 6222877.450000001]},"properties": {"vejnavn": "Vejlegade", "husnnr": "4", "invalidepladser": 1, "bemrk": null, "ident": "1207", "oprettet_af": "spatial_reader", "oprettet_dato": "2020-03-17 10:35:54.443", "rettet_af": "spatial_reader", "rettet_dato": "2020-03-17 10:35:54.443", "mi_style": null, "mi_prinx": 437}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574813.4, 6227367.300000002]},"properties": {"vejnavn": "Solhvervsvej", "husnnr": "16", "invalidepladser": 1, "bemrk": null, "ident": "1208", "oprettet_af": "spatial_reader", "oprettet_dato": "2020-03-17 10:36:25.903", "rettet_af": "spatial_reader", "rettet_dato": "2020-03-23 06:58:57.687", "mi_style": null, "mi_prinx": 438}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573701.05, 6225537.125000001]},"properties": {"vejnavn": "Vilhelm Bergsøes Vej", "husnnr": "37", "invalidepladser": 1, "bemrk": null, "ident": "1208", "oprettet_af": "spatial_reader", "oprettet_dato": "2020-03-17 10:39:11.127", "rettet_af": "spatial_reader", "rettet_dato": "2020-03-17 10:39:11.127", "mi_style": null, "mi_prinx": 439}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [570415.7999999999, 6224631.05]},"properties": {"vejnavn": "Karen Blixens Boulevard", "husnnr": "7", "invalidepladser": 1, "bemrk": null, "ident": "1208", "oprettet_af": "spatial_reader", "oprettet_dato": "2020-03-17 10:42:06.563", "rettet_af": "spatial_reader", "rettet_dato": "2020-03-17 10:42:06.563", "mi_style": null, "mi_prinx": 440}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573264.6000000001, 6225891.1000000015]},"properties": {"vejnavn": "Majdalen", "husnnr": "9", "invalidepladser": 1, "bemrk": null, "ident": "1209", "oprettet_af": "spatial_reader", "oprettet_dato": "2020-03-17 10:46:08.143", "rettet_af": "spatial_reader", "rettet_dato": "2020-03-23 07:00:59.987", "mi_style": null, "mi_prinx": 441}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575311.4, 6225676.650000001]},"properties": {"vejnavn": "Willemoesgade", "husnnr": "5", "invalidepladser": 1, "bemrk": null, "ident": "1213", "oprettet_af": "spatial_reader", "oprettet_dato": "2020-03-17 10:52:54.42", "rettet_af": "spatial_reader", "rettet_dato": "2020-03-17 10:52:54.42", "mi_style": null, "mi_prinx": 442}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575013.2, 6224297.75]},"properties": {"vejnavn": "Badstuegade", "husnnr": "1B", "invalidepladser": 1, "bemrk": null, "ident": "1213", "oprettet_af": "spatial_reader", "oprettet_dato": "2020-03-17 11:06:29.84", "rettet_af": "spatial_reader", "rettet_dato": "2020-03-17 11:06:29.84", "mi_style": null, "mi_prinx": 443}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574438.2, 6224426.775000001]},"properties": {"vejnavn": "Langelandsgade", "husnnr": "8", "invalidepladser": 1, "bemrk": null, "ident": "1216", "oprettet_af": "spatial_reader", "oprettet_dato": "2020-03-17 11:12:55.713", "rettet_af": "spatial_reader", "rettet_dato": "2020-03-17 11:12:55.713", "mi_style": null, "mi_prinx": 444}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574116.1, 6222681.774999999]},"properties": {"vejnavn": "Chr. Wærums Gade", "husnnr": "11A", "invalidepladser": 1, "bemrk": null, "ident": "1217", "oprettet_af": "spatial_reader", "oprettet_dato": "2020-03-17 11:15:24.13", "rettet_af": "spatial_reader", "rettet_dato": "2020-03-17 11:15:24.13", "mi_style": null, "mi_prinx": 445}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575674.7999999999, 6225450.7]},"properties": {"vejnavn": "Skovvejen", "husnnr": "44B", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2020-03-17 11:25:59.593", "rettet_af": "spatial_reader", "rettet_dato": "2020-03-17 11:26:38.423", "mi_style": "Symbol (34, 16720127, 14)", "mi_prinx": 446}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575677.0, 6225459.9]},"properties": {"vejnavn": "Skovvejen", "husnnr": "44A", "invalidepladser": 1, "bemrk": null, "ident": "1217", "oprettet_af": "spatial_reader", "oprettet_dato": "2020-03-17 11:27:24.777", "rettet_af": "spatial_reader", "rettet_dato": "2020-03-17 11:27:24.777", "mi_style": "Symbol (34, 16720127, 14)", "mi_prinx": 447}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575345.5377970586, 6224349.986968176]},"properties": {"vejnavn": "Skt. Olufs Gade", "husnnr": "1", "invalidepladser": 1, "bemrk": null, "ident": "1217", "oprettet_af": "spatial_reader", "oprettet_dato": "2020-03-17 11:32:05.217", "rettet_af": "spatial_reader", "rettet_dato": "2025-07-31 09:59:53.663", "mi_style": null, "mi_prinx": 448}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575681.3, 6226046.85]},"properties": {"vejnavn": "Peder Skrams Gade", "husnnr": "15", "invalidepladser": 1, "bemrk": null, "ident": "1195+1203", "oprettet_af": "spatial_reader", "oprettet_dato": "2020-03-17 11:44:10.597", "rettet_af": "spatial_reader", "rettet_dato": "2020-03-17 11:44:10.597", "mi_style": null, "mi_prinx": 449}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575668.2000000001, 6226049.55]},"properties": {"vejnavn": "Peder Skrams Gade", "husnnr": "17", "invalidepladser": 1, "bemrk": null, "ident": "1195+1203", "oprettet_af": "spatial_reader", "oprettet_dato": "2020-03-17 11:44:22.327", "rettet_af": "spatial_reader", "rettet_dato": "2020-03-17 11:44:22.327", "mi_style": null, "mi_prinx": 450}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573564.4, 6224469.1]},"properties": {"vejnavn": "Tage-Hansens Gade", "husnnr": "29", "invalidepladser": null, "bemrk": null, "ident": "1196+1212", "oprettet_af": "spatial_reader", "oprettet_dato": "2020-03-17 11:47:52.29", "rettet_af": "spatial_reader", "rettet_dato": "2020-03-17 11:49:58.087", "mi_style": null, "mi_prinx": 451}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573564.6000000001, 6224461.9]},"properties": {"vejnavn": "Tage-Hansens Gade", "husnnr": "29", "invalidepladser": 1, "bemrk": null, "ident": "1196+1212", "oprettet_af": "spatial_reader", "oprettet_dato": "2020-03-17 11:48:07.09", "rettet_af": "spatial_reader", "rettet_dato": "2020-03-17 11:49:44.383", "mi_style": null, "mi_prinx": 452}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573564.4, 6224492.5]},"properties": {"vejnavn": "Tage-Hansens Gade", "husnnr": "31B", "invalidepladser": 1, "bemrk": null, "ident": "1196+1212", "oprettet_af": "spatial_reader", "oprettet_dato": "2020-03-17 11:48:39.0", "rettet_af": "spatial_reader", "rettet_dato": "2020-03-17 11:48:39.0", "mi_style": null, "mi_prinx": 453}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574462.6000000001, 6222419.500000001]},"properties": {"vejnavn": "Marselis Boulevard", "husnnr": "34", "invalidepladser": 1, "bemrk": null, "ident": "1218", "oprettet_af": "spatial_reader", "oprettet_dato": "2020-03-17 11:52:06.373", "rettet_af": "spatial_reader", "rettet_dato": "2020-03-17 11:52:06.373", "mi_style": null, "mi_prinx": 454}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574468.6000000001, 6222420.700000001]},"properties": {"vejnavn": "Marselis Boulevard", "husnnr": "34", "invalidepladser": 1, "bemrk": null, "ident": "1218", "oprettet_af": "spatial_reader", "oprettet_dato": "2020-03-17 11:52:12.95", "rettet_af": "spatial_reader", "rettet_dato": "2020-03-17 11:52:12.95", "mi_style": null, "mi_prinx": 455}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574475.0000000001, 6222421.900000001]},"properties": {"vejnavn": "Marselis Boulevard", "husnnr": "34", "invalidepladser": 1, "bemrk": null, "ident": "1218", "oprettet_af": "spatial_reader", "oprettet_dato": "2020-03-17 11:52:20.613", "rettet_af": "spatial_reader", "rettet_dato": "2020-03-17 11:52:20.613", "mi_style": null, "mi_prinx": 456}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574481.8, 6222423.1000000015]},"properties": {"vejnavn": "Marselis Boulevard", "husnnr": "34", "invalidepladser": 1, "bemrk": null, "ident": "1218", "oprettet_af": "spatial_reader", "oprettet_dato": "2020-03-17 11:52:32.217", "rettet_af": "spatial_reader", "rettet_dato": "2020-03-17 11:52:32.217", "mi_style": null, "mi_prinx": 457}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [576152.8, 6225252.3]},"properties": {"vejnavn": "Esther Aggebos Gade", "husnnr": "3", "invalidepladser": 1, "bemrk": null, "ident": "1186+1172", "oprettet_af": "spatial_reader", "oprettet_dato": "2020-03-23 06:51:19.7", "rettet_af": "spatial_reader", "rettet_dato": "2020-03-23 06:51:19.7", "mi_style": null, "mi_prinx": 458}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [576138.6000000001, 6225293.1]},"properties": {"vejnavn": "Esther Aggebos Gade", "husnnr": "12", "invalidepladser": 1, "bemrk": null, "ident": "1186+1172", "oprettet_af": "spatial_reader", "oprettet_dato": "2020-03-23 06:51:52.03", "rettet_af": "spatial_reader", "rettet_dato": "2020-03-23 06:51:52.03", "mi_style": null, "mi_prinx": 459}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [576141.8, 6225288.5]},"properties": {"vejnavn": "Esther Aggebos Gade", "husnnr": "10", "invalidepladser": 1, "bemrk": null, "ident": "1186+1172", "oprettet_af": "spatial_reader", "oprettet_dato": "2020-03-23 06:52:02.153", "rettet_af": "spatial_reader", "rettet_dato": "2020-03-23 06:52:02.153", "mi_style": null, "mi_prinx": 460}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [576156.4, 6225267.7]},"properties": {"vejnavn": "Esther Aggebos Gade", "husnnr": "6", "invalidepladser": 1, "bemrk": null, "ident": "1186+1172", "oprettet_af": "spatial_reader", "oprettet_dato": "2020-03-23 06:52:20.473", "rettet_af": "spatial_reader", "rettet_dato": "2020-03-23 06:52:20.473", "mi_style": null, "mi_prinx": 461}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574173.0585387659, 6222819.027722998]},"properties": {"vejnavn": "Ingerslev Boulevard", "husnnr": null, "invalidepladser": 1, "bemrk": "1200", "ident": "1", "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-10 13:11:36.553", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-10 13:11:36.553", "mi_style": null, "mi_prinx": 464}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574717.2467898262, 6222608.072481987]},"properties": {"vejnavn": "Assensgade", "husnnr": "21", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-10 14:16:10.33", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-10 14:16:10.33", "mi_style": null, "mi_prinx": 466}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574756.4414590374, 6222616.351223999]},"properties": {"vejnavn": "Assensgade", "husnnr": "17", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-10 14:17:39.227", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-10 14:17:39.227", "mi_style": null, "mi_prinx": 467}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575071.0398722045, 6223736.640195375]},"properties": {"vejnavn": "Fredensgade", "husnnr": "36", "invalidepladser": 2, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-10 14:23:36.633", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-10 14:23:36.633", "mi_style": null, "mi_prinx": 468}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575071.6634185021, 6223738.822607417]},"properties": {"vejnavn": "Fredensgade ", "husnnr": "36", "invalidepladser": 2, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-10 14:24:07.44", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-10 14:24:07.44", "mi_style": null, "mi_prinx": 469}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574458.5545235131, 6224405.154470327]},"properties": {"vejnavn": "Langelandsgade", "husnnr": "4", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-10 15:01:44.29", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-10 15:01:44.29", "mi_style": null, "mi_prinx": 470}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574456.8303596153, 6224406.480750249]},"properties": {"vejnavn": "Langelandsgade", "husnnr": "4", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-10 15:02:10.15", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-10 15:02:10.15", "mi_style": null, "mi_prinx": 471}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574439.588720638, 6224425.8444371]},"properties": {"vejnavn": "Langelandsgade", "husnnr": "6", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-10 15:02:36.877", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-10 15:02:36.877", "mi_style": null, "mi_prinx": 472}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574213.7462111231, 6224317.430271916]},"properties": {"vejnavn": "Mønsgade", "husnnr": "8a", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-10 15:06:38.743", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-10 15:06:38.743", "mi_style": null, "mi_prinx": 473}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574364.2445136809, 6225576.13351622]},"properties": {"vejnavn": "Gustav Wieds Vej", "husnnr": "31", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-10 15:14:03.827", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-10 15:14:03.827", "mi_style": null, "mi_prinx": 474}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574271.226033188, 6225520.486698972]},"properties": {"vejnavn": "Gustav Wieds Vej", "husnnr": "25", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-10 15:14:25.237", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-10 15:14:54.583", "mi_style": null, "mi_prinx": 475}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573648.4455852153, 6222703.284394252]},"properties": {"vejnavn": "Åbenrågade", "husnnr": "9", "invalidepladser": 2, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-10 15:18:50.257", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 11:30:10.813", "mi_style": null, "mi_prinx": 476}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573645.981519507, 6222704.927104725]},"properties": {"vejnavn": "Åbenrågade", "husnnr": "9", "invalidepladser": 2, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-10 15:19:02.07", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 11:30:24.89", "mi_style": null, "mi_prinx": 477}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574615.0200821363, 6226143.664271046]},"properties": {"vejnavn": "Brendstrupvej", "husnnr": "5", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-10 15:24:58.847", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-10 15:25:25.463", "mi_style": null, "mi_prinx": 478}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573440.6894959002, 6225916.164055831]},"properties": {"vejnavn": "Fuglesangs Allé ", "husnnr": "115", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-10 15:30:49.483", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-10 15:31:19.2", "mi_style": null, "mi_prinx": 479}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573441.7161899453, 6225914.829353572]},"properties": {"vejnavn": "Fuglesangs Allé", "husnnr": "115", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-10 15:31:13.193", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-10 15:31:13.193", "mi_style": null, "mi_prinx": 480}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [572528.9192842386, 6223635.9144780645]},"properties": {"vejnavn": "Åbyvej ", "husnnr": "56", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-10 15:33:23.21", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-10 15:33:23.21", "mi_style": null, "mi_prinx": 481}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [577384.3500328106, 6228392.545887083]},"properties": {"vejnavn": "Vestre Strandallé", "husnnr": "170", "invalidepladser": 2, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-10 15:35:52.45", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-10 15:35:52.45", "mi_style": null, "mi_prinx": 482}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [577384.3500328106, 6228395.831308028]},"properties": {"vejnavn": "Vestre Strandallé", "husnnr": "170", "invalidepladser": 2, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-10 15:36:07.74", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-10 15:36:07.74", "mi_style": null, "mi_prinx": 483}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574290.6883509178, 6223440.857930892]},"properties": {"vejnavn": "Christen Købkes Gade", "husnnr": "25", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 08:04:38.56", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 08:04:38.56", "mi_style": null, "mi_prinx": 485}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574292.8885474477, 6223450.555093376]},"properties": {"vejnavn": "Christen Købkes gade", "husnnr": "25", "invalidepladser": 1, "bemrk": "tidsbegrænset", "ident": "", "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 08:05:17.92", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 08:05:17.92", "mi_style": null, "mi_prinx": 486}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574188.2994045179, 6222220.596509239]},"properties": {"vejnavn": "Ellemarksvej", "husnnr": "25", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 08:09:47.597", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 08:09:47.597", "mi_style": null, "mi_prinx": 487}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574594.8774293908, 6224862.872887781]},"properties": {"vejnavn": "Falstergade ", "husnnr": "9", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 08:11:45.25", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 08:11:45.25", "mi_style": null, "mi_prinx": 488}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575645.3796509246, 6225033.394188903]},"properties": {"vejnavn": "Fiskerivej", "husnnr": "2", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 08:13:23.887", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 08:13:23.887", "mi_style": null, "mi_prinx": 489}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575687.3336841018, 6225135.283751449]},"properties": {"vejnavn": "Fiskerivej", "husnnr": "6", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 08:21:28.367", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 08:21:28.367", "mi_style": null, "mi_prinx": 490}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573765.5234907598, 6222669.554414783]},"properties": {"vejnavn": "Gråstengade", "husnnr": "4", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 08:23:07.33", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 08:23:07.33", "mi_style": null, "mi_prinx": 491}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574263.9406273357, 6223167.701885861]},"properties": {"vejnavn": "Holbergsgade", "husnnr": "4", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 08:37:05.283", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 08:37:05.283", "mi_style": null, "mi_prinx": 492}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573818.8194244037, 6222564.275600996]},"properties": {"vejnavn": "P.P. Ørums Gade ", "husnnr": "40", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 08:54:37.353", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 08:54:37.353", "mi_style": null, "mi_prinx": 494}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575020.143846024, 6224751.283552042]},"properties": {"vejnavn": "Sjællandsgade ", "husnnr": "44", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 08:55:58.737", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 08:55:58.737", "mi_style": null, "mi_prinx": 495}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575126.0758521565, 6225602.137577002]},"properties": {"vejnavn": "Skt. Johannes Allé", "husnnr": "4", "invalidepladser": 1, "bemrk": "tidsbegrænset", "ident": "", "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 08:58:18.097", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 08:58:18.097", "mi_style": null, "mi_prinx": 497}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575127.7185626287, 6225602.958932239]},"properties": {"vejnavn": "Skt. Johannes Allé ", "husnnr": "4", "invalidepladser": 1, "bemrk": "Tidsbegrænset", "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 08:58:54.79", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 08:58:54.79", "mi_style": null, "mi_prinx": 498}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574192.3717864477, 6222728.518480494]},"properties": {"vejnavn": "Stadion Allé ", "husnnr": "5", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 09:01:35.56", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 09:01:35.56", "mi_style": null, "mi_prinx": 499}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574516.2188090354, 6224495.0]},"properties": {"vejnavn": "Teglværksgade", "husnnr": "5", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 09:04:13.31", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 09:04:13.31", "mi_style": null, "mi_prinx": 500}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573382.1503490765, 6222436.561601641]},"properties": {"vejnavn": "Langenæs Allé", "husnnr": "45", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 09:05:22.27", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 09:05:22.27", "mi_style": null, "mi_prinx": 501}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574586.7241332495, 6222319.2006106265]},"properties": {"vejnavn": "Marselis tværvej", "husnnr": "3", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 09:10:21.543", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 09:10:21.543", "mi_style": null, "mi_prinx": 502}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575512.1720674813, 6225984.295569786]},"properties": {"vejnavn": "Herluf Trolles Gade", "husnnr": "43", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 09:11:37.07", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 09:11:37.07", "mi_style": null, "mi_prinx": 503}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [570549.4435318275, 6223329.651950718]},"properties": {"vejnavn": "Louisevej", "husnnr": "60", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 09:12:39.197", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 09:12:39.197", "mi_style": null, "mi_prinx": 504}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575432.3019691993, 6213534.279897331]},"properties": {"vejnavn": "Skoleparken", "husnnr": "3", "invalidepladser": 2, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 09:15:20.913", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 09:15:20.913", "mi_style": null, "mi_prinx": 505}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575435.1767125258, 6213534.895913758]},"properties": {"vejnavn": "Skoleparken ", "husnnr": "3", "invalidepladser": 2, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 09:15:35.137", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 09:15:35.137", "mi_style": null, "mi_prinx": 506}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574686.8167566396, 6224112.425570103]},"properties": {"vejnavn": "Blegdammen", "husnnr": "3", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 09:46:05.277", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 09:46:05.277", "mi_style": null, "mi_prinx": 507}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574737.8197535932, 6222559.590349074]},"properties": {"vejnavn": "Dalgas Avenue", "husnnr": "33", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 09:48:59.607", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 09:48:59.607", "mi_style": null, "mi_prinx": 508}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574724.2673921969, 6222578.276180697]},"properties": {"vejnavn": "Dalgas Avenue", "husnnr": "31", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 09:49:32.92", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 09:49:32.92", "mi_style": null, "mi_prinx": 509}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574662.6690560804, 6222698.830589775]},"properties": {"vejnavn": "Fåborggade", "husnnr": "19", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 09:52:16.67", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 09:52:16.67", "mi_style": null, "mi_prinx": 510}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573723.7641226394, 6222883.87392884]},"properties": {"vejnavn": "Haderslevgade", "husnnr": "23", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 09:56:02.037", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 09:56:02.037", "mi_style": null, "mi_prinx": 511}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574950.1948158465, 6222518.823101973]},"properties": {"vejnavn": "Kildegården ", "husnnr": "14", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 10:02:38.327", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 10:02:38.327", "mi_style": null, "mi_prinx": 512}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573174.3326094088, 6222324.340775997]},"properties": {"vejnavn": "Kirkedammen", "husnnr": "31", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 10:03:44.91", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 10:03:44.91", "mi_style": null, "mi_prinx": 513}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574764.3736858368, 6224401.6597698275]},"properties": {"vejnavn": "Klostergade", "husnnr": "68", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 10:04:40.63", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 10:04:40.63", "mi_style": null, "mi_prinx": 514}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575484.2643121149, 6224755.312114988]},"properties": {"vejnavn": "Kystvejen", "husnnr": "63", "invalidepladser": null, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 10:05:45.95", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 10:05:45.95", "mi_style": null, "mi_prinx": 516}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575260.0545790552, 6225740.691868583]},"properties": {"vejnavn": "Niels Juels Gade", "husnnr": "64", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 10:06:42.113", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 10:06:42.113", "mi_style": null, "mi_prinx": 517}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574122.1695396319, 6222253.575999677]},"properties": {"vejnavn": "Ordrupvej", "husnnr": "7", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 10:07:29.987", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 10:07:29.987", "mi_style": null, "mi_prinx": 518}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573820.2902647848, 6222564.066232556]},"properties": {"vejnavn": "P.P. Ørums Gade", "husnnr": "40", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 10:08:36.257", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 10:08:36.257", "mi_style": null, "mi_prinx": 519}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573513.2284804934, 6224421.503059546]},"properties": {"vejnavn": "Thomas Nielsens Gade ", "husnnr": "4b", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 10:35:15.567", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 10:35:15.567", "mi_style": null, "mi_prinx": 521}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574869.9698357292, 6224686.401437372]},"properties": {"vejnavn": "Thunøgade", "husnnr": "17", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 10:36:20.32", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 10:36:20.32", "mi_style": null, "mi_prinx": 522}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574842.0437577005, 6224677.982546201]},"properties": {"vejnavn": "Thunøgade", "husnnr": "21", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 10:36:47.17", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 10:36:47.17", "mi_style": null, "mi_prinx": 523}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573819.4550102665, 6222787.195071867]},"properties": {"vejnavn": "Langenæs Allé", "husnnr": "1", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 10:38:32.23", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 10:38:32.23", "mi_style": null, "mi_prinx": 524}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573819.8656878845, 6222774.258726898]},"properties": {"vejnavn": "Langenæs Allé", "husnnr": "3", "invalidepladser": null, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 10:38:44.137", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 10:38:44.137", "mi_style": null, "mi_prinx": 525}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573809.5987474328, 6222763.17043121]},"properties": {"vejnavn": "Langenæs Allé", "husnnr": "5", "invalidepladser": null, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 10:39:04.733", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 10:39:04.733", "mi_style": null, "mi_prinx": 526}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574862.9051540041, 6226224.204312115]},"properties": {"vejnavn": "Finsensgade", "husnnr": "61", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 10:40:40.31", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 10:40:40.31", "mi_style": null, "mi_prinx": 527}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575609.3253388093, 6225642.107802872]},"properties": {"vejnavn": "Niels Juels Gade", "husnnr": "14", "invalidepladser": null, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 10:41:40.133", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 10:41:40.133", "mi_style": null, "mi_prinx": 528}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575621.7098357282, 6226157.82032854]},"properties": {"vejnavn": "Skovvangsvej", "husnnr": "220", "invalidepladser": null, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 10:42:29.26", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 10:42:29.26", "mi_style": null, "mi_prinx": 529}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574273.5949691997, 6226579.6673511285]},"properties": {"vejnavn": "Frederikshaldsgade ", "husnnr": "15", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 10:46:09.1", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 10:46:09.1", "mi_style": null, "mi_prinx": 530}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574272.9789527727, 6226577.408624229]},"properties": {"vejnavn": "Frederikshaldsgade", "husnnr": "15", "invalidepladser": null, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 10:46:27.437", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 10:46:27.437", "mi_style": null, "mi_prinx": 531}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574550.2745468095, 6226415.597575942]},"properties": {"vejnavn": "Norges Allé", "husnnr": "1", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 10:48:32.27", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 10:48:32.27", "mi_style": null, "mi_prinx": 532}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573464.9690871622, 6225551.886526177]},"properties": {"vejnavn": "Fuglesangs Allé", "husnnr": "114", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 10:49:51.593", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 10:49:51.593", "mi_style": null, "mi_prinx": 533}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573284.2962628339, 6226064.2587268995]},"properties": {"vejnavn": "Hammershusvej ", "husnnr": "51", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 10:50:32.377", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 10:50:32.377", "mi_style": null, "mi_prinx": 534}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574168.5019342923, 6225689.519246406]},"properties": {"vejnavn": "Jens Baggesens Vej", "husnnr": "92d", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 10:52:34.45", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 10:52:34.45", "mi_style": null, "mi_prinx": 536}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573183.6454293831, 6219583.845422071]},"properties": {"vejnavn": "M.P. Hansens Vej", "husnnr": "18", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 10:54:27.033", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 10:54:27.033", "mi_style": null, "mi_prinx": 537}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573194.0588431241, 6219583.965116482]},"properties": {"vejnavn": "M.P. Hansens Gade", "husnnr": "18", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 10:54:45.367", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 10:54:45.367", "mi_style": null, "mi_prinx": 538}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574293.6617659132, 6222509.108829569]},"properties": {"vejnavn": "F. Vestergaards Gade", "husnnr": "32", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 10:56:36.283", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 10:56:36.283", "mi_style": null, "mi_prinx": 539}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574290.7870225868, 6222525.535934292]},"properties": {"vejnavn": "F. Vestergaards Gade ", "husnnr": "32", "invalidepladser": null, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 10:56:51.647", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 10:56:51.647", "mi_style": null, "mi_prinx": 540}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575014.7018685832, 6224472.544147842]},"properties": {"vejnavn": "Guldsmedegade", "husnnr": "26", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 10:58:17.377", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 10:58:17.377", "mi_style": null, "mi_prinx": 541}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574853.3419507187, 6224400.072895276]},"properties": {"vejnavn": "Klostergade ", "husnnr": "56", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 11:01:19.687", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 11:01:46.85", "mi_style": null, "mi_prinx": 542}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574850.2618685832, 6224400.278234085]},"properties": {"vejnavn": "Klostergade", "husnnr": "56", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 11:01:29.593", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 11:01:29.593", "mi_style": null, "mi_prinx": 543}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573800.5521852324, 6222947.219776177]},"properties": {"vejnavn": "Læssøesgade", "husnnr": "83", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 11:15:14.473", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 11:15:14.473", "mi_style": null, "mi_prinx": 544}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575433.1519507194, 6224837.509240246]},"properties": {"vejnavn": "Molsgade", "husnnr": "4", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 11:27:04.7", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 11:27:04.7", "mi_style": null, "mi_prinx": 545}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574117.4563655023, 6222280.277207391]},"properties": {"vejnavn": "Ordrupvej", "husnnr": "1", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 11:27:44.68", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 11:27:44.68", "mi_style": null, "mi_prinx": 547}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573592.798767967, 6222723.202258727]},"properties": {"vejnavn": "Åbenrågade", "husnnr": "17", "invalidepladser": null, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 11:30:01.607", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 11:30:01.607", "mi_style": null, "mi_prinx": 548}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573852.0671252563, 6224259.847022587]},"properties": {"vejnavn": "Ringkøbingvej ", "husnnr": "16", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 11:31:29.06", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 11:31:29.06", "mi_style": null, "mi_prinx": 549}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573851.8617864472, 6224258.409650924]},"properties": {"vejnavn": "Ringkøbingvej", "husnnr": "16", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 11:31:45.1", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 11:31:45.1", "mi_style": null, "mi_prinx": 550}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574375.1585652019, 6222033.415963625]},"properties": {"vejnavn": "Skovbrynet", "husnnr": null, "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 11:33:45.17", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 11:33:45.17", "mi_style": null, "mi_prinx": 551}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574606.2883778228, 6227299.677618067]},"properties": {"vejnavn": "Vorregårds Allé ", "husnnr": "103", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 11:34:59.943", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 11:34:59.943", "mi_style": null, "mi_prinx": 552}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575306.5234312108, 6225834.736901434]},"properties": {"vejnavn": "Willemoesgade", "husnnr": "13", "invalidepladser": 1, "bemrk": "Tidsbegrænset", "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 11:36:31.937", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 11:36:31.937", "mi_style": null, "mi_prinx": 553}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575306.9341088288, 6225832.478174535]},"properties": {"vejnavn": "Willemoesgade", "husnnr": "13", "invalidepladser": 1, "bemrk": "tidsbegrænset", "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 11:36:49.883", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 11:36:49.883", "mi_style": null, "mi_prinx": 554}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573236.9384143031, 6220161.223442913]},"properties": {"vejnavn": "Rundhøj Allé", "husnnr": "54", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 11:38:24.073", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 11:38:24.073", "mi_style": null, "mi_prinx": 555}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [570728.6893018486, 6216766.413757699]},"properties": {"vejnavn": "Kirketorvet", "husnnr": null, "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 11:42:34.943", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 11:42:34.943", "mi_style": null, "mi_prinx": 556}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [570725.4038809041, 6216767.645790554]},"properties": {"vejnavn": "Kirketorvet", "husnnr": null, "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 11:42:46.957", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 11:42:46.957", "mi_style": null, "mi_prinx": 557}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [570683.72010267, 6216786.947638603]},"properties": {"vejnavn": "Kirketorvet", "husnnr": null, "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 11:43:20.413", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 11:43:20.413", "mi_style": null, "mi_prinx": 558}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [570684.5414579061, 6216790.438398357]},"properties": {"vejnavn": "Kirketorvet", "husnnr": null, "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 11:43:30.79", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 11:43:30.79", "mi_style": null, "mi_prinx": 559}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [570716.1636344974, 6216831.916837782]},"properties": {"vejnavn": "Kirketorvet", "husnnr": null, "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 11:43:47.467", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 11:43:47.467", "mi_style": null, "mi_prinx": 560}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [570716.5743121156, 6216834.996919917]},"properties": {"vejnavn": "Kirketorvet", "husnnr": null, "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 11:43:57.08", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 11:43:57.08", "mi_style": null, "mi_prinx": 561}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575070.7447433264, 6223252.195071867]},"properties": {"vejnavn": "Jægergårdsgade", "husnnr": "144", "invalidepladser": 1, "bemrk": "tidsbegrænset", "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 11:45:13.057", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 11:45:13.057", "mi_style": null, "mi_prinx": 562}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574936.4408418891, 6222987.421971251]},"properties": {"vejnavn": "Marselisborg Allé", "husnnr": "30b", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 11:46:52.93", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 11:46:52.93", "mi_style": null, "mi_prinx": 563}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573702.7326710331, 6224158.784515839]},"properties": {"vejnavn": "Regenburgs Plads", "husnnr": "50", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 11:48:19.28", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 11:48:19.28", "mi_style": null, "mi_prinx": 564}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573619.7098357283, 6224188.62422998]},"properties": {"vejnavn": "Regenburgsgade", "husnnr": "11", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 11:50:10.157", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 11:50:10.157", "mi_style": null, "mi_prinx": 565}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573603.5732238201, 6222298.034907595]},"properties": {"vejnavn": "Rudpolh Wulffs Gade", "husnnr": "13", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 11:51:55.07", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 11:51:55.07", "mi_style": null, "mi_prinx": 566}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574949.381326311, 6223149.484703504]},"properties": {"vejnavn": "st st blichers gade", "husnnr": "28", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 11:53:08.913", "rettet_af": "spatial_reader", "rettet_dato": "2025-07-31 10:02:57.243", "mi_style": null, "mi_prinx": 567}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574499.2238193017, 6224391.241273099]},"properties": {"vejnavn": "Teglværksgade", "husnnr": "4", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 11:58:48.823", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 11:58:48.823", "mi_style": null, "mi_prinx": 568}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575248.5108008216, 6223656.206817246]},"properties": {"vejnavn": "Toldbodgade", "husnnr": "8b", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 13:31:29.01", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 13:31:29.01", "mi_style": null, "mi_prinx": 569}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575613.2119507189, 6225969.438398356]},"properties": {"vejnavn": "Herluf Trolles gade", "husnnr": "28", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 13:35:59.73", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 13:35:59.73", "mi_style": null, "mi_prinx": 571}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575459.9619507184, 6225872.322381929]},"properties": {"vejnavn": "Otte Ruds Gade", "husnnr": "38", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 13:36:48.51", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 13:36:48.51", "mi_style": null, "mi_prinx": 572}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [572973.5414579054, 6219822.767967144]},"properties": {"vejnavn": "Rundhøj Alle", "husnnr": "129", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 13:47:28.83", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 13:47:28.83", "mi_style": null, "mi_prinx": 573}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573964.5795687882, 6225531.675564681]},"properties": {"vejnavn": "Jens Baggesens Vej", "husnnr": "84", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 13:52:36.853", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 13:52:36.853", "mi_style": null, "mi_prinx": 574}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573962.7315195069, 6225530.443531826]},"properties": {"vejnavn": "Jens Baggesens Vej", "husnnr": "84", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 13:52:50.743", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 13:52:50.743", "mi_style": null, "mi_prinx": 575}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573763.6589431843, 6225400.732252075]},"properties": {"vejnavn": "Peter Fabers Vej", "husnnr": "7", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 14:02:57.817", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 14:02:57.817", "mi_style": null, "mi_prinx": 576}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573569.8198767971, 6225558.664271047]},"properties": {"vejnavn": "Peter Fabers Vej", "husnnr": "45", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 14:03:59.61", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 14:03:59.61", "mi_style": null, "mi_prinx": 577}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573689.2009378455, 6225304.105604249]},"properties": {"vejnavn": "Viggo Stuckenbergs Vej", "husnnr": "7", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 14:05:26.077", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 14:05:26.077", "mi_style": null, "mi_prinx": 578}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [571906.5431211507, 6223317.124229979]},"properties": {"vejnavn": "Hnerik Hertz Vej", "husnnr": "54", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 14:06:25.737", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 14:06:25.737", "mi_style": null, "mi_prinx": 579}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [572263.050246407, 6223168.713552361]},"properties": {"vejnavn": "O.I. offersens Vej", "husnnr": "13", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 14:07:10.387", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 14:07:10.387", "mi_style": null, "mi_prinx": 580}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [571635.578603885, 6220454.145748499]},"properties": {"vejnavn": "Grøndalsvej ", "husnnr": "2", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 14:10:06.363", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 14:10:06.363", "mi_style": null, "mi_prinx": 581}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [571637.4266531663, 6220455.78845897]},"properties": {"vejnavn": "Grøndalsvej ", "husnnr": "2", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 14:10:17.097", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 14:10:17.097", "mi_style": null, "mi_prinx": 582}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [571642.9708010103, 6220460.511251578]},"properties": {"vejnavn": "Grøndalsvej", "husnnr": "2", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 14:10:50.553", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 14:10:50.553", "mi_style": null, "mi_prinx": 583}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [571645.8455443367, 6220461.948623242]},"properties": {"vejnavn": "Grøndalsvej", "husnnr": "2", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 14:11:00.837", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 14:11:00.837", "mi_style": null, "mi_prinx": 584}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575130.4157366346, 6223963.371970712]},"properties": {"vejnavn": "Fiskergade", "husnnr": "80", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 14:18:06.18", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 14:18:06.18", "mi_style": null, "mi_prinx": 585}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575127.8080963028, 6223964.838768398]},"properties": {"vejnavn": "Fiskergade", "husnnr": "80", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 14:18:18.71", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 14:18:18.71", "mi_style": null, "mi_prinx": 586}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575089.0245238632, 6223834.6749242265]},"properties": {"vejnavn": "Østergade", "husnnr": "48", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 14:19:11.287", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 14:19:11.287", "mi_style": null, "mi_prinx": 587}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574258.2222792607, 6222755.437371662]},"properties": {"vejnavn": "F. Vestergaards gade", "husnnr": "4", "invalidepladser": null, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 14:20:02.303", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 14:20:02.303", "mi_style": null, "mi_prinx": 588}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574263.5610882957, 6222709.852156057]},"properties": {"vejnavn": "F. Vestergaards Gade", "husnnr": "12", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 14:20:27.033", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 14:20:27.033", "mi_style": null, "mi_prinx": 589}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573703.2468583164, 6225533.67761807]},"properties": {"vejnavn": "Vilhelm Bergsøes Vej ", "husnnr": "37", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-24 13:08:01.087", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-24 13:08:01.087", "mi_style": null, "mi_prinx": 590}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574949.4344056073, 6222520.606665064]},"properties": {"vejnavn": "Adoplh Meyers Vej", "husnnr": "10", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-24 14:06:23.613", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-24 14:06:23.613", "mi_style": null, "mi_prinx": 591}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573440.4595687881, 6220071.08932238]},"properties": {"vejnavn": "Rundhøj Allé", "husnnr": "1", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-24 14:10:59.32", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-24 14:10:59.32", "mi_style": null, "mi_prinx": 592}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574108.964579056, 6219523.614989731]},"properties": {"vejnavn": "Niels Bjerres Vej", "husnnr": "33", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-24 14:54:28.78", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-24 14:54:28.78", "mi_style": null, "mi_prinx": 593}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574773.7705954819, 6222620.240246407]},"properties": {"vejnavn": "Assensgade", "husnnr": "15", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-24 15:09:24.753", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-24 15:09:24.753", "mi_style": null, "mi_prinx": 594}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573563.520197629, 6225599.931539235]},"properties": {"vejnavn": "Vilhelm Bergsøes Vej", "husnnr": "65", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-03-03 15:31:57.61", "rettet_af": "spatial_reader", "rettet_dato": "2025-03-03 15:31:57.61", "mi_style": null, "mi_prinx": 595}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573565.9366160922, 6225599.931539235]},"properties": {"vejnavn": "Vilhelm Bergsøes Vej", "husnnr": "65", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-03-03 15:32:11.45", "rettet_af": "spatial_reader", "rettet_dato": "2025-03-03 15:32:11.45", "mi_style": null, "mi_prinx": 596}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573900.4239732762, 6224444.639830079]},"properties": {"vejnavn": "Eugen Warmings Vej", "husnnr": "6", "invalidepladser": 2, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-07-24 12:35:23.093", "rettet_af": "spatial_reader", "rettet_dato": "2025-07-24 12:35:23.093", "mi_style": null, "mi_prinx": 597}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573895.0856880753, 6224474.736713882]},"properties": {"vejnavn": "Eugen Warmings Vej", "husnnr": "6", "invalidepladser": 2, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-07-24 12:36:37.753", "rettet_af": "spatial_reader", "rettet_dato": "2025-07-24 12:36:37.753", "mi_style": null, "mi_prinx": 598}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574904.906065573, 6222700.202576111]},"properties": {"vejnavn": "Hendrik Pontoppidans Gade", "husnnr": "24", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-07-24 13:10:47.673", "rettet_af": "spatial_reader", "rettet_dato": "2025-07-24 13:10:47.673", "mi_style": null, "mi_prinx": 599}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [576675.4374502097, 6227137.355086146]},"properties": {"vejnavn": "stationsgade", "husnnr": "26", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-07-28 09:34:00.233", "rettet_af": "spatial_reader", "rettet_dato": "2025-07-28 09:34:00.233", "mi_style": null, "mi_prinx": 600}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574471.4348262089, 6222940.82387054]},"properties": {"vejnavn": "Skt Anna Gade", "husnnr": null, "invalidepladser": null, "bemrk": "42", "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-07-28 14:14:27.8", "rettet_af": "spatial_reader", "rettet_dato": "2025-07-28 14:14:27.8", "mi_style": null, "mi_prinx": 601}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574477.5688115384, 6222914.615024131]},"properties": {"vejnavn": "Skt Anna Gade", "husnnr": "42", "invalidepladser": null, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-07-28 14:14:41.96", "rettet_af": "spatial_reader", "rettet_dato": "2025-07-28 14:14:41.96", "mi_style": null, "mi_prinx": 602}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575230.8720257445, 6224047.548393872]},"properties": {"vejnavn": "Kannikegade 16", "husnnr": "16", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-07-31 09:56:55.567", "rettet_af": "spatial_reader", "rettet_dato": "2025-07-31 09:56:55.567", "mi_style": null, "mi_prinx": 603}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [571983.2489361251, 6223205.13326127]},"properties": {"vejnavn": "Henrik Hertz Vej ", "husnnr": "72", "invalidepladser": 2, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-07-31 10:59:53.147", "rettet_af": "spatial_reader", "rettet_dato": "2025-07-31 10:59:53.147", "mi_style": null, "mi_prinx": 604}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [571985.1224724249, 6223202.557148858]},"properties": {"vejnavn": "Henrik Hertz Vej", "husnnr": "72", "invalidepladser": 2, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-07-31 11:01:03.507", "rettet_af": "spatial_reader", "rettet_dato": "2025-07-31 11:01:03.507", "mi_style": null, "mi_prinx": 605}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574835.1320140511, 6222779.284543324]},"properties": {"vejnavn": "Hans Broges Gade", "husnnr": "17", "invalidepladser": 2, "bemrk": "Tidsbegrænset", "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-07-31 11:15:39.89", "rettet_af": "spatial_reader", "rettet_dato": "2025-07-31 11:15:39.89", "mi_style": null, "mi_prinx": 606}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575250.902172792, 6224568.6143739]},"properties": {"vejnavn": "Studsgade ", "husnnr": "44", "invalidepladser": 2, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-07-31 13:48:01.11", "rettet_af": "spatial_reader", "rettet_dato": "2025-07-31 13:48:01.11", "mi_style": null, "mi_prinx": 607}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574412.2255140772, 6224274.489827803]},"properties": {"vejnavn": "Janus La Cours gade", "husnnr": "1", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-09-11 11:40:20.08", "rettet_af": "spatial_reader", "rettet_dato": "2025-09-11 11:40:20.08", "mi_style": null, "mi_prinx": 608}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574548.0404080742, 6226415.892238429]},"properties": {"vejnavn": "Norges Allé ", "husnnr": "2", "invalidepladser": 1, "bemrk": null, "ident": "1338", "oprettet_af": "spatial_reader", "oprettet_dato": "2025-09-11 11:43:11.467", "rettet_af": "spatial_reader", "rettet_dato": "2025-09-11 11:43:11.467", "mi_style": null, "mi_prinx": 609}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573738.9391065245, 6225498.3024416845]},"properties": {"vejnavn": "Vilhelm Bergsøes Vej", "husnnr": "23", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-09-11 11:44:27.91", "rettet_af": "spatial_reader", "rettet_dato": "2025-09-11 11:44:27.91", "mi_style": null, "mi_prinx": 610}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573740.2607020313, 6225496.834002232]},"properties": {"vejnavn": "Vilhelm Bergsøes vej", "husnnr": "23", "invalidepladser": 1, "bemrk": null, "ident": "1338", "oprettet_af": "spatial_reader", "oprettet_dato": "2025-09-11 11:44:55.213", "rettet_af": "spatial_reader", "rettet_dato": "2025-09-11 11:44:55.213", "mi_style": null, "mi_prinx": 611}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [572487.2086247086, 6221123.172494171]},"properties": {"vejnavn": "Rørdamsvej", "husnnr": "4", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-09-11 11:47:21.347", "rettet_af": "spatial_reader", "rettet_dato": "2025-09-11 11:47:21.347", "mi_style": null, "mi_prinx": 612}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [572485.3438228437, 6221125.736596736]},"properties": {"vejnavn": "Rørdamsvej", "husnnr": "4", "invalidepladser": 1, "bemrk": null, "ident": "1338", "oprettet_af": "spatial_reader", "oprettet_dato": "2025-09-11 11:47:40.887", "rettet_af": "spatial_reader", "rettet_dato": "2025-09-11 11:47:40.887", "mi_style": null, "mi_prinx": 613}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573450.7706904352, 6221551.299040821]},"properties": {"vejnavn": "H.C. Ørsteds Vej", "husnnr": "3b", "invalidepladser": 1, "bemrk": null, "ident": "1338", "oprettet_af": "spatial_reader", "oprettet_dato": "2025-09-11 11:49:03.467", "rettet_af": "spatial_reader", "rettet_dato": "2025-09-11 11:49:03.467", "mi_style": null, "mi_prinx": 614}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574422.5215850822, 6227269.3811188815]},"properties": {"vejnavn": "Skrydstrupvej", "husnnr": "15", "invalidepladser": 1, "bemrk": null, "ident": "1338", "oprettet_af": "spatial_reader", "oprettet_dato": "2025-09-11 11:50:15.83", "rettet_af": "spatial_reader", "rettet_dato": "2025-09-11 11:50:15.83", "mi_style": null, "mi_prinx": 615}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574201.3469197123, 6222224.453960875]},"properties": {"vejnavn": "Ellemarksvej ", "husnnr": "3", "invalidepladser": 1, "bemrk": null, "ident": "1338", "oprettet_af": "spatial_reader", "oprettet_dato": "2025-09-11 11:51:52.827", "rettet_af": "spatial_reader", "rettet_dato": "2025-09-11 11:51:52.827", "mi_style": null, "mi_prinx": 616}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574261.9134668851, 6223538.282346269]},"properties": {"vejnavn": "Eckersbergsgade", "husnnr": "30", "invalidepladser": 1, "bemrk": "1345", "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-12-02 13:14:47.253", "rettet_af": "spatial_reader", "rettet_dato": "2025-12-02 13:14:47.253", "mi_style": null, "mi_prinx": 617}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [572304.1753244308, 6223126.011642109]},"properties": {"vejnavn": "O. I. Offersensvej ", "husnnr": "1", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2026-02-24 12:51:35.733", "rettet_af": "spatial_reader", "rettet_dato": "2026-02-24 12:51:35.733", "mi_style": null, "mi_prinx": 618}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574370.9164150944, 6222348.226415094]},"properties": {"vejnavn": "Marselis Boulevard", "husnnr": "33", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2026-02-24 14:21:24.417", "rettet_af": "spatial_reader", "rettet_dato": "2026-02-24 14:21:24.417", "mi_style": null, "mi_prinx": 619}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574625.108490566, 6226140.433962264]},"properties": {"vejnavn": "Brendstrupvej", "husnnr": "3", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2026-02-24 14:22:33.083", "rettet_af": "spatial_reader", "rettet_dato": "2026-02-24 14:22:33.083", "mi_style": null, "mi_prinx": 620}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575667.7509942062, 6225512.529924879]},"properties": {"vejnavn": "Trøjborgvej", "husnnr": "2b", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2026-03-03 15:32:27.96", "rettet_af": "spatial_reader", "rettet_dato": "2026-03-03 15:32:27.96", "mi_style": null, "mi_prinx": 621}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575717.5020655771, 6225812.445111568]},"properties": {"vejnavn": "Otte Ruds Gade", "husnnr": "5", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2026-03-10 15:36:13.387", "rettet_af": "spatial_reader", "rettet_dato": "2026-03-10 15:36:13.387", "mi_style": null, "mi_prinx": 622}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574461.6616818061, 6226572.319186298]},"properties": {"vejnavn": "Stockholmsgade", "husnnr": "1", "invalidepladser": 2, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2026-03-10 16:10:04.953", "rettet_af": "spatial_reader", "rettet_dato": "2026-03-10 16:10:04.953", "mi_style": null, "mi_prinx": 623}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575466.6230287044, 6226492.72476525]},"properties": {"vejnavn": "Skovfaldet", "husnnr": "12", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2026-03-24 13:49:38.32", "rettet_af": "spatial_reader", "rettet_dato": "2026-03-24 13:49:38.32", "mi_style": null, "mi_prinx": 624}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574060.9656603774, 6222480.358490566]},"properties": {"vejnavn": "Hans Schourups Gade", "husnnr": "6", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2026-04-14 13:45:00.16", "rettet_af": "spatial_reader", "rettet_dato": "2026-04-14 13:45:00.16", "mi_style": null, "mi_prinx": 626}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574258.8724698942, 6211072.413328694]},"properties": {"vejnavn": "Dampmøllevej", "husnnr": "4", "invalidepladser": 2, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2026-09-04 14:50:52.313", "rettet_af": "spatial_reader", "rettet_dato": "2026-09-04 14:50:52.313", "mi_style": null, "mi_prinx": 628}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574259.8084374957, 6211070.354199971]},"properties": {"vejnavn": "Dampmøllevej ", "husnnr": "4", "invalidepladser": 2, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2026-09-04 14:51:13.877", "rettet_af": "spatial_reader", "rettet_dato": "2026-09-04 14:51:13.877", "mi_style": null, "mi_prinx": 629}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [572717.6960377358, 6224879.641509433]},"properties": {"vejnavn": "Præstevamgsvej", "husnnr": "4", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2026-09-04 14:52:51.823", "rettet_af": "spatial_reader", "rettet_dato": "2026-09-04 14:52:51.823", "mi_style": null, "mi_prinx": 630}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573286.2358490566, 6225834.424528301]},"properties": {"vejnavn": "Majdalen", "husnnr": "1", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2026-09-04 14:54:06.53", "rettet_af": "spatial_reader", "rettet_dato": "2026-09-04 14:54:06.53", "mi_style": null, "mi_prinx": 631}}]} From 8758fe57b44a02df4b23a0852894e1e728979d18 Mon Sep 17 00:00:00 2001 From: Mikkel Ricky Date: Mon, 14 Sep 2026 13:30:02 +0200 Subject: [PATCH 2/5] Added test controller --- src/Controller/TestController.php | 78 +++++++++++++++++++++++++++++++ 1 file changed, 78 insertions(+) create mode 100644 src/Controller/TestController.php diff --git a/src/Controller/TestController.php b/src/Controller/TestController.php new file mode 100644 index 0000000..30ec078 --- /dev/null +++ b/src/Controller/TestController.php @@ -0,0 +1,78 @@ + Requirement::CATCH_ALL], methods: [Request::METHOD_GET], priority: -99)] + public function index(?string $path = null): Response + { + return $this->render(null === $path ? 'test/index.html.twig' : sprintf('test/%s.html.twig', $path)); + } + + #[Route( + path: '/data/{path}.{_format}', + methods: [Request::METHOD_GET], + requirements: [ + 'path' => Requirement::CATCH_ALL, + '_format' => 'json|geojson', + ], + defaults: ['_format' => self::FORMAT_JSON], + priority: -98, + )] + public function data(Request $request, string $path, string $_format): Response + { + // Remove "/test/" + $path = substr($request->getRequestUri(), 6); + $path = realpath(__DIR__.'/../../tests/resources/'.$path); + if (!file_exists($path)) { + throw new NotFoundHttpException($path); + } + + $contentType = match ($_format) { + self::FORMAT_GEOJSON => self::APPLICATION_GEOJSON, + default => self::APPLICATION_JSON, + }; + + return new BinaryFileResponse($path, headers: [ + 'content-type' => $contentType, + ]); + } + + #[Route('/config', name: 'config', methods: [Request::METHOD_GET])] + public function config( + #[MapQueryParameter('type')] + string $type, + ): JsonResponse { + $configName = match ($type) { + 'https://smartdatamodels.org/dataModel.Parking/OnStreetParking' => 'Parking/OnStreetParking', + default => throw new BadRequestHttpException('Invalid type'), + }; + + $data = Yaml::parseFile(__DIR__.'/../../tests/resources/config/'.$configName.'.yaml'); + + return new JsonResponse($data); + } +} From ee308e9587b2fe10204f7b915f4d9a5fb8f114f7 Mon Sep 17 00:00:00 2001 From: Mikkel Ricky Date: Mon, 14 Sep 2026 13:42:35 +0200 Subject: [PATCH 3/5] Moved test source --- src/{Source/Test => Test/Source}/TestHandicapParking.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename src/{Source/Test => Test/Source}/TestHandicapParking.php (99%) diff --git a/src/Source/Test/TestHandicapParking.php b/src/Test/Source/TestHandicapParking.php similarity index 99% rename from src/Source/Test/TestHandicapParking.php rename to src/Test/Source/TestHandicapParking.php index fe886bc..2f9fd5c 100644 --- a/src/Source/Test/TestHandicapParking.php +++ b/src/Test/Source/TestHandicapParking.php @@ -2,7 +2,7 @@ declare(strict_types=1); -namespace App\Source\Test; +namespace App\Test\Source; use App\Geo\Wgs84Transformer; use App\Ngsi\NgsiEntity; From 255f0698e0a5c2d74ba208847bc785f59fd2c900 Mon Sep 17 00:00:00 2001 From: Mikkel Ricky Date: Mon, 14 Sep 2026 15:39:49 +0200 Subject: [PATCH 4/5] Refactored test source stuff --- docs/Testing.md | 35 +- src/Command/BrokerEntityDelete.php | 5 + .../Command/SourceFetchContentCommand.php | 57 + src/Test/Command/SourcesImportCommand.php | 54 + .../TestHandicapParking.php | 57 +- src/Test/Source/Osm/TestHandicapParking.php | 235 + tests/resources/README.md | 4 +- tests/resources/data/fetch-resources | 17 - .../api/interpreter?osm-handicap-parking | 18848 ++++++++++++++++ ...atialmap?mtm_spatialmaps-handicap-parking} | 2 +- 10 files changed, 19263 insertions(+), 51 deletions(-) create mode 100644 src/Test/Command/SourceFetchContentCommand.php create mode 100644 src/Test/Command/SourcesImportCommand.php rename src/Test/Source/{ => MtmSpatialMaps}/TestHandicapParking.php (54%) create mode 100644 src/Test/Source/Osm/TestHandicapParking.php delete mode 100755 tests/resources/data/fetch-resources create mode 100644 tests/resources/data/overpass-api.de/api/interpreter?osm-handicap-parking rename tests/resources/data/webkort.aarhuskommune.dk/{spatialmap?page=get_geojson_opendata&datasource=invap => spatialmap?mtm_spatialmaps-handicap-parking} (99%) diff --git a/docs/Testing.md b/docs/Testing.md index 9c66a2f..ee1adf7 100644 --- a/docs/Testing.md +++ b/docs/Testing.md @@ -1,12 +1,43 @@ # Testing +## Test sources + For local testing and development we use a test controller that's only enabled in the `dev` and `test` environments. -Load some local test data from a test data source (only available in the `dev` and `test` environments): +Furthermore, we use static test sources (fetching locally stored data) for testing and development. By convention, +the ID of a test source starts with `test:`, i.e. they can be listed by running + +```shell +docker compose exec phpfpm php bin/console app:source:list | grep 'test:' +``` + +Example: Import and show data from the test source `test:mtm_spatialmaps-handicap-parking`: ```shell docker compose exec phpfpm php bin/console app:source:import test:mtm_spatialmaps-handicap-parking -curl 'http://enter.local.itkdev.dk/data/ngsi-ld/v1/entities?type=https://smartdatamodels.org/dataModel.Parking/OnStreetParking' +docker compose exec phpfpm curl 'http://scorpio:9090/ngsi-ld/v1/entities?type=https://smartdatamodels.org/dataModel.Parking/OnStreetParking' ``` See the result on . + +### Refreshing test source data + +The data for test sources are stored as plain files in the [../tests/resources/data](../tests/resources/data) folder. + +The data files can be updated by running + +```shell +docker compose exec phpfpm php bin/console test:source:fetch-content +``` + +Load *all test sources* with + +```shell +docker compose exec phpfpm php bin/console test:source:import +``` + +To empty your local broker, e.g. before loading test data, run + +```shell +docker compose exec phpfpm php bin/console app:broker:entity:delete --all +``` diff --git a/src/Command/BrokerEntityDelete.php b/src/Command/BrokerEntityDelete.php index 3e585cf..9fd7c9c 100644 --- a/src/Command/BrokerEntityDelete.php +++ b/src/Command/BrokerEntityDelete.php @@ -6,6 +6,7 @@ use Symfony\Component\Console\Attribute\AsCommand; use Symfony\Component\Console\Attribute\Option; use Symfony\Component\Console\Command\Command; +use Symfony\Component\Console\Exception\RuntimeException; use Symfony\Component\Console\Style\SymfonyStyle; use Symfony\Component\HttpFoundation\Request; use Symfony\Contracts\HttpClient\HttpClientInterface; @@ -30,6 +31,10 @@ public function __invoke( if ($all) { $data = $brokerClient->request(Request::METHOD_GET, '/ngsi-ld/v1/types')->toArray(); $entityTypes = $data['typeList'] ?? []; + } else { + if (0 === count($entityTypes)) { + throw new RuntimeException('Missing entity types'); + } } $limit = 1000; diff --git a/src/Test/Command/SourceFetchContentCommand.php b/src/Test/Command/SourceFetchContentCommand.php new file mode 100644 index 0000000..2e823eb --- /dev/null +++ b/src/Test/Command/SourceFetchContentCommand.php @@ -0,0 +1,57 @@ +getSources(), static fn (SourceInterface $source) => str_starts_with($source->definition->id, 'test:')); + foreach ($testSources as $source) { + try { + $io->section($source); + $url = $source->definition->landingPage; + $filename = preg_replace('@^[a-z]+://[^/]+/test/@', '', $source->definition->accessUrl); + $filename = __DIR__.'/../../../tests/resources/'.$filename; + + if ($filesystem->exists($filename)) { + $filesystem->remove($filename); + } + + $io->writeln(sprintf('Fetching "%s"', $url)); + $response = $httpClient->request(Request::METHOD_GET, $url); + $content = $response->getContent(); + $filesystem->dumpFile($filename, $content); + $io->success(sprintf('Content written to file %s', realpath($filename))); + } catch (\Exception $e) { + $io->error($e->getMessage()); + } + } + + return Command::SUCCESS; + } +} diff --git a/src/Test/Command/SourcesImportCommand.php b/src/Test/Command/SourcesImportCommand.php new file mode 100644 index 0000000..2d2715e --- /dev/null +++ b/src/Test/Command/SourcesImportCommand.php @@ -0,0 +1,54 @@ +getSources(), static fn (SourceInterface $source) => str_starts_with($source->definition->id, 'test:')); + foreach ($testSources as $source) { + try { + $io->section($source); + $input = new ArrayInput([ + 'command' => 'app:source:import', + 'source' => $source->definition->id, + ]); + $input->setInteractive(false); + + $application->doRun($input, $output); + } catch (\Exception $e) { + $io->error($e->getMessage()); + } + } + + return Command::SUCCESS; + } +} diff --git a/src/Test/Source/TestHandicapParking.php b/src/Test/Source/MtmSpatialMaps/TestHandicapParking.php similarity index 54% rename from src/Test/Source/TestHandicapParking.php rename to src/Test/Source/MtmSpatialMaps/TestHandicapParking.php index 2f9fd5c..86dd040 100644 --- a/src/Test/Source/TestHandicapParking.php +++ b/src/Test/Source/MtmSpatialMaps/TestHandicapParking.php @@ -2,7 +2,7 @@ declare(strict_types=1); -namespace App\Test\Source; +namespace App\Test\Source\MtmSpatialMaps; use App\Geo\Wgs84Transformer; use App\Ngsi\NgsiEntity; @@ -15,37 +15,36 @@ */ #[When('dev')] #[When('test')] -final readonly class TestHandicapParking extends AbstractSource +#[Definition( + // By convention the ID as a test source must start with `test:` + id: 'test:mtm_spatialmaps-handicap-parking', + title: 'Test: Handicapparkering, Aarhus Kommune', + description: '', + publisher: '', + contact: '', + // The landingPage URL is used by the `test:source:fetch-content` command to fetch test content. + landingPage: 'https://webkort.aarhuskommune.dk/spatialmap?page=get_geojson_opendata&datasource=invap', + accessUrl: 'http://nginx:8080/test/data/webkort.aarhuskommune.dk/spatialmap?mtm_spatialmaps-handicap-parking', + mediaType: 'application/geo+json', + crs: 'EPSG:25832', + model: 'OnStreetParking', + contextUrl: 'https://raw.githubusercontent.com/smart-data-models/dataModel.Parking/master/context.jsonld', + updateFrequency: '', + licence: null, + omittedFields: [ + 'ident' => 'Single-letter code; its meaning is not documented and not confirmed by the data owner.', + 'oprettet_af' => 'Directory username of the municipal employee who created the record.', + 'rettet_af' => 'Directory username of the municipal employee who last edited the record.', + 'oprettet_dato' => 'Describes the register record.', + 'rettet_dato' => 'Describes the register record.', + 'mi_style' => 'MapInfo rendering style, empty throughout the export.', + ], +)] +final class TestHandicapParking extends AbstractSource { - public Definition $definition; - public function __construct( - private Wgs84Transformer $transformer, + private readonly Wgs84Transformer $transformer, ) { - $this->definition = new Definition( - id: 'test:mtm_spatialmaps-handicap-parking', - title: 'Test: Handicapparkering, Aarhus Kommune', - description: 'Disabled parking bays in Aarhus Municipality, with the number of reserved bays per location.', - publisher: 'Aarhus Kommune', - contact: 'ppg@aarhus.dk', - landingPage: 'https://www.opendata.dk/city-of-aarhus/parkering-i-aarhus-kommune', - accessUrl: 'http://nginx:8080/test/data/webkort.aarhuskommune.dk/spatialmap?page=get_geojson_opendata&datasource=invap', - mediaType: 'application/geo+json', - crs: 'EPSG:25832', - model: 'OnStreetParking', - contextUrl: 'https://raw.githubusercontent.com/smart-data-models/dataModel.Parking/master/context.jsonld', - updateFrequency: 'continuous', - licence: null, - - omittedFields: [ - 'ident' => 'Single-letter code; its meaning is not documented and not confirmed by the data owner.', - 'oprettet_af' => 'Directory username of the municipal employee who created the record.', - 'rettet_af' => 'Directory username of the municipal employee who last edited the record.', - 'oprettet_dato' => 'Describes the register record.', - 'rettet_dato' => 'Describes the register record.', - 'mi_style' => 'MapInfo rendering style, empty throughout the export.', - ], - ); } /** diff --git a/src/Test/Source/Osm/TestHandicapParking.php b/src/Test/Source/Osm/TestHandicapParking.php new file mode 100644 index 0000000..48a823c --- /dev/null +++ b/src/Test/Source/Osm/TestHandicapParking.php @@ -0,0 +1,235 @@ + 'Selector distinguishing a single bay (parking_space) from a facility (parking); the model carries no such distinction.', + 'capacity' => 'Published for single bays only; on a facility it counts all bays and would overstate the reserved capacity.', + 'parking' => 'Facility siting (street_side, surface, underground); every record is published under the one model this source names.', + 'orientation' => 'How bays lie relative to the road; the model has no counterpart.', + 'disabled' => 'Access restriction on street-side parking; redundant with the category every entity is published with.', + 'access' => 'Who may enter; mapping it onto permit attributes needs an interpretation the tag values do not support.', + 'fee:conditional' => 'Time-qualified refinement of fee; the category values the plain fee tag maps onto carry no schedule.', + 'surface' => 'Paving material; the model has no counterpart. 6% of records carry it.', + 'wheelchair' => 'Step-free access to the place, not the parking capacity. 3% of records carry it.', + 'capacity:charging' => 'Bays with charging points; a different subset than the reserved bays this data set publishes. 2% of records carry it.', + 'operator' => 'Who runs the facility; a fact about the business rather than its reserved bays. 1% of records carry it.', + 'brand' => 'Commercial brand of the facility; the name already identifies it. Under 1% of records carry it.', + ], +)] +final class TestHandicapParking extends AbstractSource +{ + public function __construct( + private readonly Wgs84Transformer $transformer, + ) { + } + + /** + * Maps one feed record onto an NgsiEntity. + * + * @param array $data Overpass JSON element + */ + public function createNgsiEntity(array $data): ?NgsiEntity + { + $type = $data['type'] ?? null; + $id = $data['id'] ?? null; + + // OSM ids are only unique per element type, so both are needed to + // address the same object again on the next import. + if (!\is_string($type) || !\is_int($id)) { + return null; + } + + $geometry = $this->geometry($data); + if (null === $geometry) { + return null; + } + + $tags = \is_array($data['tags'] ?? null) ? $data['tags'] : []; + + $entity = new NgsiEntity( + \sprintf('urn:ngsi-ld:%s:aarhus-handicap-osm-%s-%d', $this->definition->model, $type, $id), + $this->definition->model + ); + + return $entity + ->setProperty('name', trim((string) ($tags['name'] ?? ''))) + ->setProperty('description', trim((string) ($tags['description'] ?? ''))) + ->setProperty('category', $this->category($tags)) + ->setProperty('totalSpotNumber', $this->reservedBays($tags)) + ->setProperty('source', $this->definition->accessUrl) + ->geoProperty('location', $this->transformer->transformGeometry($this->definition->crs, $geometry)); + } + + /** + * Every record is disabled parking; the fee tag refines that with the + * model's charging categories. Only its two plain values map — an + * untagged or unrecognised value states nothing about charging rather + * than assuming free. + * + * @param array $tags + * + * @return list + */ + private function category(array $tags): array + { + return match ($tags['fee'] ?? null) { + 'yes' => ['forDisabled', 'feeCharged'], + 'no' => ['forDisabled', 'free'], + default => ['forDisabled'], + }; + } + + /** + * Number of reserved bays the record carries. + * + * capacity:disabled counts them directly whatever the record is. A single + * bay (parking_space=disabled) is reserved in its entirety, so its own + * capacity applies — one when untagged, per the tag's definition. A + * facility's plain capacity counts all its bays and is never used, and + * capacity:disabled=yes states that reserved bays exist without counting + * them, so nothing is published for it. + * + * @param array $tags + */ + private function reservedBays(array $tags): ?int + { + if (null !== $count = $this->count($tags, 'capacity:disabled')) { + return $count; + } + + if ('disabled' === ($tags['parking_space'] ?? null)) { + return $this->count($tags, 'capacity') ?? 1; + } + + return null; + } + + /** + * @param array $tags + */ + private function count(array $tags, string $tag): ?int + { + $value = $tags[$tag] ?? null; + + return \is_string($value) && ctype_digit($value) ? (int) $value : null; + } + + /** + * @param array $element + * + * @return array{type: string, coordinates: mixed}|null + */ + private function geometry(array $element): ?array + { + return match ($element['type'] ?? null) { + 'node' => $this->point($element['lon'] ?? null, $element['lat'] ?? null), + 'way' => $this->wayGeometry($element['geometry'] ?? null), + // The feed's output mode carries no member geometry for + // relations, only their bounding box, so the centre of that box + // is the best location available. + 'relation' => $this->boundsCentre($element['bounds'] ?? null), + default => null, + }; + } + + /** + * @return array{type: string, coordinates: array{float, float}}|null + */ + private function point(mixed $longitude, mixed $latitude): ?array + { + if (!is_numeric($longitude) || !is_numeric($latitude)) { + return null; + } + + return ['type' => 'Point', 'coordinates' => [(float) $longitude, (float) $latitude]]; + } + + /** + * @return array{type: string, coordinates: mixed}|null + */ + private function wayGeometry(mixed $vertices): ?array + { + if (!\is_array($vertices)) { + return null; + } + + $positions = []; + foreach ($vertices as $vertex) { + if (!\is_array($vertex) || !is_numeric($vertex['lon'] ?? null) || !is_numeric($vertex['lat'] ?? null)) { + return null; + } + + $positions[] = [(float) $vertex['lon'], (float) $vertex['lat']]; + } + + // A way that returns to its first vertex outlines an area — here a + // bay or a parking lot — so it becomes a Polygon ring rather than a + // line along its edge. Four positions are a ring's minimum: three + // corners plus the repeated first. + if (\count($positions) >= 4 && $positions[0] === $positions[array_key_last($positions)]) { + return ['type' => 'Polygon', 'coordinates' => [$positions]]; + } + + if (\count($positions) >= 2) { + return ['type' => 'LineString', 'coordinates' => $positions]; + } + + return null; + } + + /** + * @return array{type: string, coordinates: array{float, float}}|null + */ + private function boundsCentre(mixed $bounds): ?array + { + if (!\is_array($bounds)) { + return null; + } + + foreach (['minlon', 'minlat', 'maxlon', 'maxlat'] as $edge) { + if (!is_numeric($bounds[$edge] ?? null)) { + return null; + } + } + + return $this->point( + ((float) $bounds['minlon'] + (float) $bounds['maxlon']) / 2, + ((float) $bounds['minlat'] + (float) $bounds['maxlat']) / 2 + ); + } +} diff --git a/tests/resources/README.md b/tests/resources/README.md index 63a8c9b..060124b 100644 --- a/tests/resources/README.md +++ b/tests/resources/README.md @@ -3,7 +3,7 @@ Run ```shell -./data/fetch-resources +docker compose exec phpfpm php bin/console test:source-content:fetch ``` -to update the data resources. +to update the test data resources. diff --git a/tests/resources/data/fetch-resources b/tests/resources/data/fetch-resources deleted file mode 100755 index 77b20c9..0000000 --- a/tests/resources/data/fetch-resources +++ /dev/null @@ -1,17 +0,0 @@ -#!/usr/bin/env bash -set -o errexit -o errtrace -o noclobber -o nounset -o pipefail -IFS=$'\n\t' - -script_dir=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd) - -cd "$script_dir" - -urls=( - "https://webkort.aarhuskommune.dk/spatialmap?page=get_geojson_opendata&datasource=invap" -) -for url in "${urls[@]}"; do - target_file_name="${url##https://}" - mkdir -p "$(dirname "$target_file_name")" - curl --silent "$url" >| "$target_file_name" - echo "$url → $target_file_name" -done diff --git a/tests/resources/data/overpass-api.de/api/interpreter?osm-handicap-parking b/tests/resources/data/overpass-api.de/api/interpreter?osm-handicap-parking new file mode 100644 index 0000000..5bfeb7f --- /dev/null +++ b/tests/resources/data/overpass-api.de/api/interpreter?osm-handicap-parking @@ -0,0 +1,18848 @@ +{ + "version": 0.6, + "generator": "Overpass API 0.7.62.11 87bfad18", + "osm3s": { + "timestamp_osm_base": "2026-09-14T13:37:35Z", + "timestamp_areas_base": "2026-09-13T09:23:35Z", + "copyright": "The data included in this document is from www.openstreetmap.org. The data is made available under ODbL." + }, + "elements": [ + +{ + "type": "node", + "id": 3580886094, + "lat": 56.1540563, + "lon": 10.2141175, + "tags": { + "access": "yes", + "amenity": "parking", + "capacity:disabled": "4", + "fee": "yes", + "parking": "surface" + } +}, +{ + "type": "node", + "id": 8134288883, + "lat": 56.1880475, + "lon": 10.1724790, + "tags": { + "amenity": "parking_space", + "capacity": "2", + "parking_space": "disabled" + } +}, +{ + "type": "node", + "id": 8134288884, + "lat": 56.1880635, + "lon": 10.1724327, + "tags": { + "amenity": "parking_space", + "capacity": "2", + "parking_space": "disabled" + } +}, +{ + "type": "node", + "id": 8134288885, + "lat": 56.1880835, + "lon": 10.1723902, + "tags": { + "amenity": "parking_space", + "capacity": "2", + "parking_space": "disabled" + } +}, +{ + "type": "node", + "id": 8134288886, + "lat": 56.1881235, + "lon": 10.1723425, + "tags": { + "amenity": "parking_space", + "capacity": "2", + "parking_space": "disabled" + } +}, +{ + "type": "node", + "id": 8134288887, + "lat": 56.1881507, + "lon": 10.1722965, + "tags": { + "amenity": "parking_space", + "capacity": "2", + "parking_space": "disabled" + } +}, +{ + "type": "node", + "id": 8134288897, + "lat": 56.1885207, + "lon": 10.1713835, + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "node", + "id": 8134298246, + "lat": 56.1884511, + "lon": 10.1714340, + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "node", + "id": 8134298264, + "lat": 56.1886537, + "lon": 10.1717005, + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "node", + "id": 8134298267, + "lat": 56.1885890, + "lon": 10.1716971, + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "node", + "id": 8983050455, + "lat": 56.1888332, + "lon": 10.1690964, + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "node", + "id": 8983050456, + "lat": 56.1888028, + "lon": 10.1691129, + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "node", + "id": 8983050457, + "lat": 56.1887709, + "lon": 10.1691301, + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "node", + "id": 8983050458, + "lat": 56.1886695, + "lon": 10.1690153, + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "node", + "id": 8983050459, + "lat": 56.1886304, + "lon": 10.1690332, + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "node", + "id": 8983050460, + "lat": 56.1886619, + "lon": 10.1692197, + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "node", + "id": 8983050461, + "lat": 56.1886332, + "lon": 10.1692384, + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "node", + "id": 8983050462, + "lat": 56.1886341, + "lon": 10.1684121, + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "node", + "id": 8983050463, + "lat": 56.1886332, + "lon": 10.1684769, + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "node", + "id": 8983050464, + "lat": 56.1883481, + "lon": 10.1688661, + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "node", + "id": 8983050465, + "lat": 56.1883500, + "lon": 10.1689293, + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "node", + "id": 8983050466, + "lat": 56.1882130, + "lon": 10.1690623, + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "node", + "id": 8983050467, + "lat": 56.1882167, + "lon": 10.1691222, + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "node", + "id": 8983050468, + "lat": 56.1896107, + "lon": 10.1659157, + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "node", + "id": 8983050469, + "lat": 56.1895942, + "lon": 10.1659846, + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "node", + "id": 8983050470, + "lat": 56.1895662, + "lon": 10.1659138, + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "node", + "id": 9322358023, + "lat": 56.1577621, + "lon": 10.1916218, + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "node", + "id": 9700854897, + "lat": 56.1999829, + "lon": 10.2237171, + "tags": { + "amenity": "parking_space", + "capacity": "2", + "parking_space": "disabled" + } +}, +{ + "type": "node", + "id": 9727605404, + "lat": 56.1548474, + "lon": 10.1823601, + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "node", + "id": 10121348257, + "lat": 56.1587281, + "lon": 10.2050798, + "tags": { + "amenity": "parking_space", + "parking_space": "disabled" + } +}, +{ + "type": "node", + "id": 10121348258, + "lat": 56.1587233, + "lon": 10.2051616, + "tags": { + "amenity": "parking_space", + "parking_space": "disabled" + } +}, +{ + "type": "node", + "id": 10687920010, + "lat": 56.1509931, + "lon": 10.1637614, + "tags": { + "amenity": "parking_space", + "capacity": "2", + "parking_space": "disabled" + } +}, +{ + "type": "node", + "id": 10965058334, + "lat": 56.1600949, + "lon": 10.1971488, + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "node", + "id": 10966056821, + "lat": 56.1672444, + "lon": 10.2032256, + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "node", + "id": 10966089271, + "lat": 56.0884662, + "lon": 10.2215781, + "tags": { + "amenity": "parking_space", + "capacity": "4", + "parking_space": "disabled" + } +}, +{ + "type": "node", + "id": 10966089272, + "lat": 56.0883070, + "lon": 10.2212489, + "tags": { + "amenity": "parking_space", + "capacity": "4", + "parking_space": "disabled" + } +}, +{ + "type": "node", + "id": 10967376053, + "lat": 56.1656118, + "lon": 10.2027526, + "tags": { + "amenity": "parking_space", + "capacity": "2", + "parking_space": "disabled" + } +}, +{ + "type": "node", + "id": 10967380941, + "lat": 56.1555258, + "lon": 10.2110997, + "tags": { + "amenity": "parking_space", + "capacity": "2", + "parking_space": "disabled" + } +}, +{ + "type": "node", + "id": 10967409246, + "lat": 56.1544680, + "lon": 10.2005485, + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "node", + "id": 10967938203, + "lat": 56.1375208, + "lon": 10.1967317, + "tags": { + "amenity": "parking_space", + "capacity": "3", + "parking_space": "disabled" + } +}, +{ + "type": "node", + "id": 10975000722, + "lat": 56.1523509, + "lon": 10.1985042, + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "node", + "id": 10975000723, + "lat": 56.1523399, + "lon": 10.1985996, + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "node", + "id": 10976078410, + "lat": 56.2043522, + "lon": 10.1789339, + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "node", + "id": 10976078411, + "lat": 56.2045499, + "lon": 10.1787763, + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "node", + "id": 11249239926, + "lat": 56.1526083, + "lon": 10.1951472, + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "node", + "id": 12368170867, + "lat": 56.1676256, + "lon": 10.2255202, + "tags": { + "amenity": "parking", + "brand": "Q-Park", + "brand:wikidata": "Q1127798", + "capacity": "299", + "capacity:disabled": "3", + "fee": "yes", + "layer": "-1", + "name": "Q-Park SHIP", + "operator": "Q-Park", + "operator:type": "private", + "operator:wikidata": "Q1127798", + "parking": "underground" + } +}, +{ + "type": "node", + "id": 12368170868, + "lat": 56.1664403, + "lon": 10.2264836, + "tags": { + "amenity": "parking", + "brand": "Q-Park", + "brand:wikidata": "Q1127798", + "capacity": "307", + "capacity:disabled": "4", + "fee": "yes", + "layer": "-1", + "name": "Q-Park Z-huset", + "operator": "Q-Park", + "operator:type": "private", + "operator:wikidata": "Q1127798", + "parking": "underground" + } +}, +{ + "type": "node", + "id": 12368279328, + "lat": 56.1661910, + "lon": 10.2294715, + "tags": { + "amenity": "parking", + "brand": "Q-Park", + "brand:wikidata": "Q1127798", + "capacity": "574", + "capacity:disabled": "3", + "fee": "yes", + "layer": "-1", + "name": "Q-Park Lighthouse", + "operator": "Q-Park", + "operator:type": "private", + "operator:wikidata": "Q1127798", + "parking": "underground" + } +}, +{ + "type": "node", + "id": 13767419249, + "lat": 56.1451174, + "lon": 10.1951941, + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "node", + "id": 13781618716, + "lat": 56.1294935, + "lon": 10.2028416, + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "node", + "id": 13781761916, + "lat": 56.1220894, + "lon": 10.1696146, + "tags": { + "amenity": "parking_space", + "capacity": "2", + "parking_space": "disabled" + } +}, +{ + "type": "node", + "id": 13786925366, + "lat": 56.1403121, + "lon": 10.1924982, + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "node", + "id": 13928234157, + "lat": 56.1424644, + "lon": 10.2326602, + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "node", + "id": 13928234158, + "lat": 56.1424842, + "lon": 10.2326313, + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "node", + "id": 13987835028, + "lat": 56.0378975, + "lon": 10.0846591, + "tags": { + "amenity": "parking_space", + "parking_space": "disabled" + } +}, +{ + "type": "node", + "id": 13987835029, + "lat": 56.0379577, + "lon": 10.0846883, + "tags": { + "amenity": "parking_space", + "parking_space": "disabled" + } +}, +{ + "type": "node", + "id": 14088025059, + "lat": 56.1168619, + "lon": 10.1540999, + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled", + "surface": "asphalt" + } +}, +{ + "type": "node", + "id": 14088025060, + "lat": 56.1168873, + "lon": 10.1540407, + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled", + "surface": "asphalt" + } +}, +{ + "type": "node", + "id": 14158118867, + "lat": 56.2817983, + "lon": 10.3260199, + "tags": { + "amenity": "parking_space", + "parking_space": "disabled" + } +}, +{ + "type": "node", + "id": 14158118868, + "lat": 56.2817442, + "lon": 10.3269738, + "tags": { + "amenity": "parking_space", + "parking_space": "disabled" + } +}, +{ + "type": "node", + "id": 14158118869, + "lat": 56.2805578, + "lon": 10.3258027, + "tags": { + "amenity": "parking_space", + "parking_space": "disabled" + } +}, +{ + "type": "node", + "id": 14169686176, + "lat": 56.1679970, + "lon": 10.2186603, + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "node", + "id": 14169686177, + "lat": 56.1680403, + "lon": 10.2186824, + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "node", + "id": 14169686178, + "lat": 56.1680978, + "lon": 10.2187051, + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "node", + "id": 14169687624, + "lat": 56.1661885, + "lon": 10.2263206, + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "node", + "id": 14169687625, + "lat": 56.1663363, + "lon": 10.2261417, + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "node", + "id": 14169687626, + "lat": 56.1663940, + "lon": 10.2260702, + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "node", + "id": 14169687627, + "lat": 56.1664476, + "lon": 10.2260070, + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "node", + "id": 14169687628, + "lat": 56.1665276, + "lon": 10.2261316, + "tags": { + "amenity": "parking_space", + "capacity": "2", + "parking_space": "disabled" + } +}, +{ + "type": "node", + "id": 14169687629, + "lat": 56.1663168, + "lon": 10.2263852, + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "node", + "id": 14169787820, + "lat": 56.1472202, + "lon": 10.2040724, + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "node", + "id": 14169787821, + "lat": 56.1472295, + "lon": 10.2042905, + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "node", + "id": 14169803563, + "lat": 56.1434892, + "lon": 10.2015841, + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "node", + "id": 14169807689, + "lat": 56.1434863, + "lon": 10.2064821, + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "node", + "id": 14169821681, + "lat": 56.1424807, + "lon": 10.2057009, + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "node", + "id": 14169830204, + "lat": 56.1434497, + "lon": 10.2055057, + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "node", + "id": 14169830412, + "lat": 56.1427391, + "lon": 10.2030914, + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "node", + "id": 14169830413, + "lat": 56.1485083, + "lon": 10.2058145, + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "node", + "id": 14169831556, + "lat": 56.1438953, + "lon": 10.2054667, + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "node", + "id": 14169831591, + "lat": 56.1422967, + "lon": 10.2026576, + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "node", + "id": 14169831596, + "lat": 56.1423460, + "lon": 10.2025848, + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "node", + "id": 14169831597, + "lat": 56.1421623, + "lon": 10.2028179, + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "node", + "id": 14169832889, + "lat": 56.1440572, + "lon": 10.2068511, + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "node", + "id": 14169836572, + "lat": 56.1413079, + "lon": 10.2069535, + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "node", + "id": 14169841585, + "lat": 56.1442714, + "lon": 10.2028588, + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "node", + "id": 14169850040, + "lat": 56.1491450, + "lon": 10.2059184, + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "node", + "id": 14169850041, + "lat": 56.1491816, + "lon": 10.2059338, + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "node", + "id": 14169850078, + "lat": 56.1597507, + "lon": 10.1998418, + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "node", + "id": 14169850079, + "lat": 56.1588765, + "lon": 10.1994326, + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "node", + "id": 14169850080, + "lat": 56.1586300, + "lon": 10.1994415, + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "node", + "id": 14169904797, + "lat": 56.1743624, + "lon": 10.2183061, + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "node", + "id": 14169906806, + "lat": 56.1744615, + "lon": 10.2018153, + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "node", + "id": 14169906925, + "lat": 56.1731554, + "lon": 10.2087840, + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "node", + "id": 14169906926, + "lat": 56.1731096, + "lon": 10.2092138, + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "node", + "id": 14169908644, + "lat": 56.1621777, + "lon": 10.2136222, + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "node", + "id": 14169908828, + "lat": 56.1761755, + "lon": 10.2052430, + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "node", + "id": 14169908838, + "lat": 56.1588155, + "lon": 10.2039459, + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "node", + "id": 14169909652, + "lat": 56.1720058, + "lon": 10.2136745, + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "node", + "id": 14169911249, + "lat": 56.1712632, + "lon": 10.2194550, + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "node", + "id": 14169913091, + "lat": 56.1734278, + "lon": 10.2187420, + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "node", + "id": 14169913092, + "lat": 56.1733982, + "lon": 10.2189856, + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "node", + "id": 14169913269, + "lat": 56.1697640, + "lon": 10.2177351, + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "node", + "id": 14169913903, + "lat": 56.1718591, + "lon": 10.2153237, + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "node", + "id": 14169916860, + "lat": 56.1724696, + "lon": 10.2143630, + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "node", + "id": 14169920887, + "lat": 56.1728618, + "lon": 10.2161748, + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "node", + "id": 14169923639, + "lat": 56.1733585, + "lon": 10.2153221, + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "node", + "id": 14169923640, + "lat": 56.1727133, + "lon": 10.2179097, + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "node", + "id": 14169932003, + "lat": 56.1625591, + "lon": 10.2146187, + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "node", + "id": 14169932513, + "lat": 56.1585746, + "lon": 10.2029894, + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "node", + "id": 14169933685, + "lat": 56.1619060, + "lon": 10.2154344, + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "node", + "id": 14169933686, + "lat": 56.1613047, + "lon": 10.2055519, + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "node", + "id": 14169938117, + "lat": 56.1629003, + "lon": 10.2095334, + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "node", + "id": 14169938160, + "lat": 56.1599392, + "lon": 10.1985971, + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "node", + "id": 14169939005, + "lat": 56.1604626, + "lon": 10.2001210, + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "node", + "id": 14169939006, + "lat": 56.1590129, + "lon": 10.1985816, + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "node", + "id": 14169939007, + "lat": 56.1589115, + "lon": 10.1987599, + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "node", + "id": 14169940004, + "lat": 56.1593884, + "lon": 10.2042796, + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "node", + "id": 14169944488, + "lat": 56.1599590, + "lon": 10.1999475, + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "node", + "id": 14169949248, + "lat": 56.1610291, + "lon": 10.1976031, + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "node", + "id": 14170333137, + "lat": 56.1755016, + "lon": 10.1956990, + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "node", + "id": 14170336776, + "lat": 56.1476389, + "lon": 10.1943080, + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "node", + "id": 14170346551, + "lat": 56.1528856, + "lon": 10.2113361, + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "node", + "id": 14170350721, + "lat": 56.1783064, + "lon": 10.1994971, + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "node", + "id": 14170350722, + "lat": 56.1711032, + "lon": 10.1928484, + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "node", + "id": 14170367029, + "lat": 56.1631267, + "lon": 10.2018958, + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "node", + "id": 14170371747, + "lat": 56.1628985, + "lon": 10.2011554, + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "node", + "id": 14170372770, + "lat": 56.1470938, + "lon": 10.2001516, + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "node", + "id": 14170372771, + "lat": 56.1482967, + "lon": 10.1989900, + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "node", + "id": 14170373960, + "lat": 56.1482552, + "lon": 10.2001790, + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "node", + "id": 14170380206, + "lat": 56.1674221, + "lon": 10.2058099, + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "node", + "id": 14170380213, + "lat": 56.1470603, + "lon": 10.1962730, + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "node", + "id": 14170394905, + "lat": 56.1668487, + "lon": 10.2064353, + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "node", + "id": 14170394906, + "lat": 56.1558461, + "lon": 10.2077463, + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "node", + "id": 14170396339, + "lat": 56.1478549, + "lon": 10.1998957, + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "node", + "id": 14170405754, + "lat": 56.1482031, + "lon": 10.1933606, + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "node", + "id": 14170405755, + "lat": 56.1482802, + "lon": 10.1933249, + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "node", + "id": 14170409170, + "lat": 56.1479089, + "lon": 10.1974649, + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "node", + "id": 14172831091, + "lat": 56.1432391, + "lon": 10.1929917, + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "node", + "id": 14172831092, + "lat": 56.1405817, + "lon": 10.1924571, + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "node", + "id": 14172831355, + "lat": 56.1418549, + "lon": 10.1956314, + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "node", + "id": 14172831356, + "lat": 56.1419896, + "lon": 10.1955927, + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "node", + "id": 14172835623, + "lat": 56.1408481, + "lon": 10.1968133, + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "node", + "id": 14172850106, + "lat": 56.1443757, + "lon": 10.1880379, + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "node", + "id": 14172850107, + "lat": 56.1442731, + "lon": 10.1880681, + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "node", + "id": 14172850108, + "lat": 56.1441991, + "lon": 10.1879344, + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "node", + "id": 14172850109, + "lat": 56.1452313, + "lon": 10.1865095, + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "node", + "id": 14172851407, + "lat": 56.1438456, + "lon": 10.1940359, + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "node", + "id": 14172859114, + "lat": 56.1440356, + "lon": 10.1951270, + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "node", + "id": 14172859115, + "lat": 56.1395404, + "lon": 10.1927862, + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "node", + "id": 14172862733, + "lat": 56.1400411, + "lon": 10.2002248, + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "node", + "id": 14172864647, + "lat": 56.1456654, + "lon": 10.1986113, + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "node", + "id": 14172864648, + "lat": 56.1454777, + "lon": 10.1986760, + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "node", + "id": 14172868358, + "lat": 56.1431324, + "lon": 10.1940599, + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "node", + "id": 14172868359, + "lat": 56.1425491, + "lon": 10.1930269, + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "node", + "id": 14172871119, + "lat": 56.1388167, + "lon": 10.1896039, + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "node", + "id": 14172874527, + "lat": 56.1433302, + "lon": 10.1928363, + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "node", + "id": 14172874528, + "lat": 56.1431812, + "lon": 10.1922351, + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "node", + "id": 14172874529, + "lat": 56.1418192, + "lon": 10.1944963, + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "node", + "id": 14172880968, + "lat": 56.1426382, + "lon": 10.1888597, + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "node", + "id": 14172887605, + "lat": 56.1456476, + "lon": 10.1873544, + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "node", + "id": 14172976646, + "lat": 56.1459357, + "lon": 10.1912440, + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "node", + "id": 14173004585, + "lat": 56.1465830, + "lon": 10.1926844, + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "node", + "id": 14173006952, + "lat": 56.1477871, + "lon": 10.1920433, + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "node", + "id": 14173007961, + "lat": 56.1439103, + "lon": 10.1844770, + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "node", + "id": 14173007985, + "lat": 56.1579200, + "lon": 10.1949427, + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "node", + "id": 14173007986, + "lat": 56.1580667, + "lon": 10.1948478, + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "node", + "id": 14173013256, + "lat": 56.1548724, + "lon": 10.1955123, + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "node", + "id": 14173013265, + "lat": 56.1544749, + "lon": 10.1911284, + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "node", + "id": 14173014436, + "lat": 56.1673068, + "lon": 10.1848612, + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "node", + "id": 14173022370, + "lat": 56.1437067, + "lon": 10.1852890, + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "node", + "id": 14173025674, + "lat": 56.1568221, + "lon": 10.1888599, + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "node", + "id": 14173026047, + "lat": 56.1503899, + "lon": 10.1952918, + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "node", + "id": 14173026048, + "lat": 56.1502241, + "lon": 10.1958906, + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "node", + "id": 14173026049, + "lat": 56.1503498, + "lon": 10.1959194, + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "node", + "id": 14173026629, + "lat": 56.1452248, + "lon": 10.1922988, + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "node", + "id": 14173026630, + "lat": 56.1505562, + "lon": 10.1973576, + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "node", + "id": 14173026631, + "lat": 56.1553302, + "lon": 10.1958364, + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "node", + "id": 14173028204, + "lat": 56.1462905, + "lon": 10.1886344, + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "node", + "id": 14173029608, + "lat": 56.1508613, + "lon": 10.1961515, + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "node", + "id": 14173030782, + "lat": 56.1334000, + "lon": 10.1820410, + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "node", + "id": 14173032304, + "lat": 56.1583838, + "lon": 10.1891436, + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "node", + "id": 14173032305, + "lat": 56.1585777, + "lon": 10.1892948, + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "node", + "id": 14173032306, + "lat": 56.1587265, + "lon": 10.1894361, + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "node", + "id": 14173034017, + "lat": 56.1551091, + "lon": 10.1987122, + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "node", + "id": 14173040110, + "lat": 56.1568290, + "lon": 10.1865189, + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "node", + "id": 14173041825, + "lat": 56.1679644, + "lon": 10.1891946, + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "node", + "id": 14173058756, + "lat": 56.1739032, + "lon": 10.1804173, + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "node", + "id": 14173063999, + "lat": 56.1848356, + "lon": 10.2019531, + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "node", + "id": 14173068543, + "lat": 56.0465039, + "lon": 10.1915405, + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "node", + "id": 14173085095, + "lat": 56.0464185, + "lon": 10.1928637, + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "node", + "id": 14173086863, + "lat": 56.1150473, + "lon": 10.1917452, + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "node", + "id": 14173115399, + "lat": 56.1614838, + "lon": 10.1337963, + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "node", + "id": 14173116645, + "lat": 56.1522093, + "lon": 10.1675012, + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "node", + "id": 14173120355, + "lat": 56.1480892, + "lon": 10.1632451, + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "node", + "id": 14173123010, + "lat": 56.1297274, + "lon": 10.1660388, + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "node", + "id": 14173124301, + "lat": 56.1494381, + "lon": 10.1574841, + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "node", + "id": 14173607997, + "lat": 56.1436201, + "lon": 10.1952234, + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "node", + "id": 14173714658, + "lat": 56.1563976, + "lon": 10.2034076, + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "node", + "id": 14173868701, + "lat": 56.1435920, + "lon": 10.1964848, + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "node", + "id": 14173983662, + "lat": 56.1553722, + "lon": 10.1942577, + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "node", + "id": 14173983714, + "lat": 56.1576418, + "lon": 10.1980342, + "tags": { + "access": "yes", + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "node", + "id": 14175440219, + "lat": 56.1500985, + "lon": 10.1956761, + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 23858719, + "bounds": { + "minlat": 56.1752108, + "minlon": 10.0655325, + "maxlat": 56.1759101, + "maxlon": 10.0665261 + }, + "geometry": [ + { "lat": 56.1753107, "lon": 10.0655336 }, + { "lat": 56.1753071, "lon": 10.0655382 }, + { "lat": 56.1752193, "lon": 10.0655474 }, + { "lat": 56.1752108, "lon": 10.0656623 }, + { "lat": 56.1752173, "lon": 10.0658327 }, + { "lat": 56.1753043, "lon": 10.0659677 }, + { "lat": 56.1753964, "lon": 10.0660981 }, + { "lat": 56.1754902, "lon": 10.0662151 }, + { "lat": 56.1756100, "lon": 10.0663485 }, + { "lat": 56.1757022, "lon": 10.0664373 }, + { "lat": 56.1757026, "lon": 10.0663036 }, + { "lat": 56.1757403, "lon": 10.0663405 }, + { "lat": 56.1757418, "lon": 10.0664726 }, + { "lat": 56.1757985, "lon": 10.0665261 }, + { "lat": 56.1757988, "lon": 10.0664709 }, + { "lat": 56.1757992, "lon": 10.0663988 }, + { "lat": 56.1757993, "lon": 10.0663847 }, + { "lat": 56.1758127, "lon": 10.0663251 }, + { "lat": 56.1757862, "lon": 10.0663009 }, + { "lat": 56.1757847, "lon": 10.0662939 }, + { "lat": 56.1757849, "lon": 10.0662863 }, + { "lat": 56.1757868, "lon": 10.0662801 }, + { "lat": 56.1758383, "lon": 10.0662558 }, + { "lat": 56.1758752, "lon": 10.0662384 }, + { "lat": 56.1759101, "lon": 10.0662219 }, + { "lat": 56.1758037, "lon": 10.0661467 }, + { "lat": 56.1756940, "lon": 10.0660428 }, + { "lat": 56.1755916, "lon": 10.0659242 }, + { "lat": 56.1755863, "lon": 10.0659351 }, + { "lat": 56.1755839, "lon": 10.0659385 }, + { "lat": 56.1755049, "lon": 10.0659742 }, + { "lat": 56.1754983, "lon": 10.0659754 }, + { "lat": 56.1754901, "lon": 10.0659734 }, + { "lat": 56.1754830, "lon": 10.0659678 }, + { "lat": 56.1753633, "lon": 10.0658030 }, + { "lat": 56.1753619, "lon": 10.0657983 }, + { "lat": 56.1753623, "lon": 10.0657935 }, + { "lat": 56.1753649, "lon": 10.0657906 }, + { "lat": 56.1754604, "lon": 10.0657789 }, + { "lat": 56.1754676, "lon": 10.0657678 }, + { "lat": 56.1753237, "lon": 10.0655325 }, + { "lat": 56.1753107, "lon": 10.0655336 } + ], + "tags": { + "access": "yes", + "amenity": "parking", + "capacity": "36", + "capacity:charging": "2", + "capacity:disabled": "2", + "caravan": "designated", + "fee": "no", + "motorcar": "designated", + "motorcycle": "designated", + "opening_hours": "24/7", + "parking": "surface", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 37930622, + "bounds": { + "minlat": 56.1767006, + "minlon": 10.1992429, + "maxlat": 56.1767467, + "maxlon": 10.1996547 + }, + "geometry": [ + { "lat": 56.1767467, "lon": 10.1992445 }, + { "lat": 56.1767036, "lon": 10.1992429 }, + { "lat": 56.1767006, "lon": 10.1996547 }, + { "lat": 56.1767428, "lon": 10.1996505 }, + { "lat": 56.1767467, "lon": 10.1992445 } + ], + "tags": { + "access": "yes", + "amenity": "parking", + "capacity:disabled": "yes", + "fee": "no", + "parking": "surface" + } +}, +{ + "type": "way", + "id": 38036160, + "bounds": { + "minlat": 56.0909791, + "minlon": 10.1365739, + "maxlat": 56.0916698, + "maxlon": 10.1386065 + }, + "geometry": [ + { "lat": 56.0916698, "lon": 10.1367667 }, + { "lat": 56.0913291, "lon": 10.1365739 }, + { "lat": 56.0909791, "lon": 10.1385512 }, + { "lat": 56.0910694, "lon": 10.1386065 }, + { "lat": 56.0912186, "lon": 10.1380357 }, + { "lat": 56.0914259, "lon": 10.1373877 }, + { "lat": 56.0916698, "lon": 10.1367667 } + ], + "tags": { + "amenity": "parking", + "capacity:disabled": "yes", + "parking": "surface", + "wheelchair": "yes" + } +}, +{ + "type": "way", + "id": 38036161, + "bounds": { + "minlat": 56.0905065, + "minlon": 10.1369197, + "maxlat": 56.0911395, + "maxlon": 10.1386850 + }, + "geometry": [ + { "lat": 56.0911395, "lon": 10.1371540 }, + { "lat": 56.0907343, "lon": 10.1369197 }, + { "lat": 56.0905875, "lon": 10.1377354 }, + { "lat": 56.0905065, "lon": 10.1381857 }, + { "lat": 56.0905985, "lon": 10.1382389 }, + { "lat": 56.0905495, "lon": 10.1385068 }, + { "lat": 56.0908640, "lon": 10.1386850 }, + { "lat": 56.0911395, "lon": 10.1371540 } + ], + "tags": { + "amenity": "parking", + "capacity:disabled": "yes", + "parking": "surface", + "wheelchair": "yes" + } +}, +{ + "type": "way", + "id": 53470679, + "bounds": { + "minlat": 56.1547442, + "minlon": 10.2056509, + "maxlat": 56.1551520, + "maxlon": 10.2061176 + }, + "geometry": [ + { "lat": 56.1551287, "lon": 10.2061176 }, + { "lat": 56.1551520, "lon": 10.2060460 }, + { "lat": 56.1550416, "lon": 10.2059325 }, + { "lat": 56.1547679, "lon": 10.2056509 }, + { "lat": 56.1547442, "lon": 10.2057246 }, + { "lat": 56.1547473, "lon": 10.2057278 }, + { "lat": 56.1547846, "lon": 10.2057656 }, + { "lat": 56.1550190, "lon": 10.2060054 }, + { "lat": 56.1551287, "lon": 10.2061176 } + ], + "tags": { + "amenity": "parking", + "capacity": "20", + "capacity:charging": "6", + "capacity:disabled": "2", + "parking": "street_side", + "wheelchair": "yes" + } +}, +{ + "type": "way", + "id": 55786220, + "bounds": { + "minlat": 56.1779454, + "minlon": 10.0654344, + "maxlat": 56.1787015, + "maxlon": 10.0662243 + }, + "geometry": [ + { "lat": 56.1785625, "lon": 10.0662243 }, + { "lat": 56.1784657, "lon": 10.0661205 }, + { "lat": 56.1783784, "lon": 10.0660320 }, + { "lat": 56.1783888, "lon": 10.0660146 }, + { "lat": 56.1784710, "lon": 10.0659784 }, + { "lat": 56.1784738, "lon": 10.0659744 }, + { "lat": 56.1784761, "lon": 10.0659672 }, + { "lat": 56.1784763, "lon": 10.0659591 }, + { "lat": 56.1784739, "lon": 10.0659536 }, + { "lat": 56.1783903, "lon": 10.0658792 }, + { "lat": 56.1783856, "lon": 10.0658773 }, + { "lat": 56.1783812, "lon": 10.0658776 }, + { "lat": 56.1783765, "lon": 10.0658805 }, + { "lat": 56.1782978, "lon": 10.0659335 }, + { "lat": 56.1782896, "lon": 10.0659569 }, + { "lat": 56.1781171, "lon": 10.0658356 }, + { "lat": 56.1779454, "lon": 10.0657293 }, + { "lat": 56.1779466, "lon": 10.0657190 }, + { "lat": 56.1780681, "lon": 10.0656383 }, + { "lat": 56.1780704, "lon": 10.0656326 }, + { "lat": 56.1780990, "lon": 10.0655616 }, + { "lat": 56.1780793, "lon": 10.0654344 }, + { "lat": 56.1782321, "lon": 10.0655372 }, + { "lat": 56.1783810, "lon": 10.0656525 }, + { "lat": 56.1785292, "lon": 10.0657859 }, + { "lat": 56.1786730, "lon": 10.0659342 }, + { "lat": 56.1787015, "lon": 10.0660997 }, + { "lat": 56.1786788, "lon": 10.0661682 }, + { "lat": 56.1786706, "lon": 10.0661635 }, + { "lat": 56.1786617, "lon": 10.0661628 }, + { "lat": 56.1786394, "lon": 10.0661722 }, + { "lat": 56.1785978, "lon": 10.0661899 }, + { "lat": 56.1785747, "lon": 10.0661997 }, + { "lat": 56.1785714, "lon": 10.0662030 }, + { "lat": 56.1785625, "lon": 10.0662243 } + ], + "tags": { + "amenity": "parking", + "capacity": "37", + "capacity:charging": "2", + "capacity:disabled": "2", + "caravan": "designated", + "fee": "no", + "motorcar": "designated", + "motorcycle": "designated", + "parking": "surface" + } +}, +{ + "type": "way", + "id": 89048632, + "bounds": { + "minlat": 56.1673927, + "minlon": 10.2063130, + "maxlat": 56.1680742, + "maxlon": 10.2070312 + }, + "geometry": [ + { "lat": 56.1673927, "lon": 10.2065578 }, + { "lat": 56.1674765, "lon": 10.2065016 }, + { "lat": 56.1675070, "lon": 10.2066481 }, + { "lat": 56.1680062, "lon": 10.2063130 }, + { "lat": 56.1680742, "lon": 10.2066398 }, + { "lat": 56.1674912, "lon": 10.2070312 }, + { "lat": 56.1673927, "lon": 10.2065578 } + ], + "tags": { + "access": "no", + "access:conditional": "yes @ (Mo-Fr 00:00-07:00,17:00-24:00; Sa-Su 00:00-24:00)", + "amenity": "parking", + "capacity:disabled": "2", + "fee": "no", + "parking": "surface" + } +}, +{ + "type": "way", + "id": 107343720, + "bounds": { + "minlat": 56.1587072, + "minlon": 10.2042891, + "maxlat": 56.1587895, + "maxlon": 10.2052260 + }, + "geometry": [ + { "lat": 56.1587895, "lon": 10.2042891 }, + { "lat": 56.1587495, "lon": 10.2043449 }, + { "lat": 56.1587072, "lon": 10.2052260 }, + { "lat": 56.1587419, "lon": 10.2051743 }, + { "lat": 56.1587895, "lon": 10.2042891 } + ], + "tags": { + "access": "yes", + "amenity": "parking", + "capacity:disabled": "3", + "fee": "yes", + "fee:conditional": "no @ (Mo-Sa 23:00-08:00; Su)", + "orientation": "diagonal", + "parking": "street_side" + } +}, +{ + "type": "way", + "id": 160617931, + "bounds": { + "minlat": 56.1694669, + "minlon": 10.1749166, + "maxlat": 56.1712802, + "maxlon": 10.1757387 + }, + "geometry": [ + { "lat": 56.1694955, "lon": 10.1757387 }, + { "lat": 56.1694669, "lon": 10.1752621 }, + { "lat": 56.1712516, "lon": 10.1749166 }, + { "lat": 56.1712766, "lon": 10.1753338 }, + { "lat": 56.1712802, "lon": 10.1753932 }, + { "lat": 56.1708321, "lon": 10.1754799 }, + { "lat": 56.1694955, "lon": 10.1757387 } + ], + "tags": { + "amenity": "parking", + "capacity:disabled": "2", + "parking": "surface" + } +}, +{ + "type": "way", + "id": 164055492, + "bounds": { + "minlat": 56.1924543, + "minlon": 10.1829704, + "maxlat": 56.1940349, + "maxlon": 10.1857833 + }, + "geometry": [ + { "lat": 56.1939703, "lon": 10.1829704 }, + { "lat": 56.1935791, "lon": 10.1832593 }, + { "lat": 56.1935978, "lon": 10.1833371 }, + { "lat": 56.1934045, "lon": 10.1834860 }, + { "lat": 56.1933877, "lon": 10.1834142 }, + { "lat": 56.1929877, "lon": 10.1837137 }, + { "lat": 56.1930035, "lon": 10.1837965 }, + { "lat": 56.1928080, "lon": 10.1839386 }, + { "lat": 56.1927871, "lon": 10.1838635 }, + { "lat": 56.1924543, "lon": 10.1841290 }, + { "lat": 56.1925005, "lon": 10.1843235 }, + { "lat": 56.1928926, "lon": 10.1840070 }, + { "lat": 56.1928999, "lon": 10.1840379 }, + { "lat": 56.1928577, "lon": 10.1840699 }, + { "lat": 56.1929453, "lon": 10.1844420 }, + { "lat": 56.1925863, "lon": 10.1847151 }, + { "lat": 56.1928471, "lon": 10.1857833 }, + { "lat": 56.1929800, "lon": 10.1856827 }, + { "lat": 56.1927460, "lon": 10.1846876 }, + { "lat": 56.1929640, "lon": 10.1845211 }, + { "lat": 56.1931329, "lon": 10.1852399 }, + { "lat": 56.1931447, "lon": 10.1852880 }, + { "lat": 56.1931559, "lon": 10.1853358 }, + { "lat": 56.1931976, "lon": 10.1853008 }, + { "lat": 56.1932161, "lon": 10.1853791 }, + { "lat": 56.1937034, "lon": 10.1850034 }, + { "lat": 56.1936851, "lon": 10.1849283 }, + { "lat": 56.1939074, "lon": 10.1847605 }, + { "lat": 56.1938967, "lon": 10.1847141 }, + { "lat": 56.1938875, "lon": 10.1846739 }, + { "lat": 56.1936160, "lon": 10.1834939 }, + { "lat": 56.1935681, "lon": 10.1835306 }, + { "lat": 56.1935695, "lon": 10.1834890 }, + { "lat": 56.1939756, "lon": 10.1832078 }, + { "lat": 56.1939904, "lon": 10.1832730 }, + { "lat": 56.1940349, "lon": 10.1832351 }, + { "lat": 56.1939703, "lon": 10.1829704 } + ], + "tags": { + "access": "private", + "amenity": "parking", + "capacity:disabled": "2", + "parking": "surface", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 165863146, + "bounds": { + "minlat": 56.1974693, + "minlon": 10.1773423, + "maxlat": 56.1979674, + "maxlon": 10.1787317 + }, + "geometry": [ + { "lat": 56.1976083, "lon": 10.1773423 }, + { "lat": 56.1975384, "lon": 10.1774102 }, + { "lat": 56.1974693, "lon": 10.1774773 }, + { "lat": 56.1978285, "lon": 10.1786714 }, + { "lat": 56.1978693, "lon": 10.1786316 }, + { "lat": 56.1978782, "lon": 10.1786610 }, + { "lat": 56.1978994, "lon": 10.1787317 }, + { "lat": 56.1979572, "lon": 10.1786756 }, + { "lat": 56.1979363, "lon": 10.1786060 }, + { "lat": 56.1979270, "lon": 10.1785753 }, + { "lat": 56.1979674, "lon": 10.1785361 }, + { "lat": 56.1976083, "lon": 10.1773423 } + ], + "tags": { + "access": "yes", + "amenity": "parking", + "capacity": "62", + "capacity:disabled": "2", + "fee": "no", + "lit": "yes", + "parking": "surface", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 165863151, + "bounds": { + "minlat": 56.1972996, + "minlon": 10.1774656, + "maxlat": 56.1978062, + "maxlon": 10.1788888 + }, + "geometry": [ + { "lat": 56.1974397, "lon": 10.1774656 }, + { "lat": 56.1973846, "lon": 10.1775189 }, + { "lat": 56.1973809, "lon": 10.1775224 }, + { "lat": 56.1973762, "lon": 10.1775270 }, + { "lat": 56.1973709, "lon": 10.1775321 }, + { "lat": 56.1972996, "lon": 10.1776010 }, + { "lat": 56.1975028, "lon": 10.1782807 }, + { "lat": 56.1975755, "lon": 10.1785238 }, + { "lat": 56.1976507, "lon": 10.1787755 }, + { "lat": 56.1976658, "lon": 10.1788259 }, + { "lat": 56.1977084, "lon": 10.1787848 }, + { "lat": 56.1977179, "lon": 10.1788168 }, + { "lat": 56.1977394, "lon": 10.1788888 }, + { "lat": 56.1977973, "lon": 10.1788328 }, + { "lat": 56.1977665, "lon": 10.1787298 }, + { "lat": 56.1978062, "lon": 10.1786915 }, + { "lat": 56.1974397, "lon": 10.1774656 } + ], + "tags": { + "access": "yes", + "amenity": "parking", + "capacity": "66", + "capacity:disabled": "2", + "fee": "no", + "lit": "yes", + "parking": "surface", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 165863156, + "bounds": { + "minlat": 56.1976532, + "minlon": 10.1772629, + "maxlat": 56.1981261, + "maxlon": 10.1785803 + }, + "geometry": [ + { "lat": 56.1977918, "lon": 10.1772629 }, + { "lat": 56.1977216, "lon": 10.1773308 }, + { "lat": 56.1976532, "lon": 10.1773970 }, + { "lat": 56.1979886, "lon": 10.1785171 }, + { "lat": 56.1980282, "lon": 10.1784788 }, + { "lat": 56.1980371, "lon": 10.1785086 }, + { "lat": 56.1980586, "lon": 10.1785803 }, + { "lat": 56.1981171, "lon": 10.1785237 }, + { "lat": 56.1980959, "lon": 10.1784530 }, + { "lat": 56.1980856, "lon": 10.1784185 }, + { "lat": 56.1981261, "lon": 10.1783794 }, + { "lat": 56.1977918, "lon": 10.1772629 } + ], + "tags": { + "access": "yes", + "amenity": "parking", + "capacity": "58", + "capacity:disabled": "2", + "fee": "no", + "lit": "yes", + "parking": "surface", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 165863158, + "bounds": { + "minlat": 56.1971168, + "minlon": 10.1775858, + "maxlat": 56.1976453, + "maxlon": 10.1790435 + }, + "geometry": [ + { "lat": 56.1972665, "lon": 10.1775858 }, + { "lat": 56.1971589, "lon": 10.1776496 }, + { "lat": 56.1971168, "lon": 10.1776744 }, + { "lat": 56.1975056, "lon": 10.1789629 }, + { "lat": 56.1975448, "lon": 10.1789268 }, + { "lat": 56.1975795, "lon": 10.1790435 }, + { "lat": 56.1976366, "lon": 10.1789870 }, + { "lat": 56.1976142, "lon": 10.1789168 }, + { "lat": 56.1976047, "lon": 10.1788849 }, + { "lat": 56.1976453, "lon": 10.1788457 }, + { "lat": 56.1975236, "lon": 10.1784383 }, + { "lat": 56.1974584, "lon": 10.1785012 }, + { "lat": 56.1974494, "lon": 10.1784712 }, + { "lat": 56.1975127, "lon": 10.1784101 }, + { "lat": 56.1972665, "lon": 10.1775858 } + ], + "tags": { + "access": "yes", + "amenity": "parking", + "capacity": "33", + "capacity:disabled": "1", + "fee": "no", + "lit": "yes", + "parking": "surface", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 174488858, + "bounds": { + "minlat": 56.1697704, + "minlon": 10.1845796, + "maxlat": 56.1702644, + "maxlon": 10.1849799 + }, + "geometry": [ + { "lat": 56.1697931, "lon": 10.1845870 }, + { "lat": 56.1697779, "lon": 10.1847639 }, + { "lat": 56.1697704, "lon": 10.1848503 }, + { "lat": 56.1699250, "lon": 10.1848932 }, + { "lat": 56.1699652, "lon": 10.1849044 }, + { "lat": 56.1699989, "lon": 10.1849137 }, + { "lat": 56.1702376, "lon": 10.1849799 }, + { "lat": 56.1702644, "lon": 10.1846679 }, + { "lat": 56.1699626, "lon": 10.1845796 }, + { "lat": 56.1699585, "lon": 10.1846329 }, + { "lat": 56.1697931, "lon": 10.1845870 } + ], + "tags": { + "access": "yes", + "amenity": "parking", + "capacity:disabled": "2", + "fee": "no", + "parking": "surface" + } +}, +{ + "type": "way", + "id": 177971436, + "bounds": { + "minlat": 56.1721931, + "minlon": 10.1886438, + "maxlat": 56.1722310, + "maxlon": 10.1887616 + }, + "geometry": [ + { "lat": 56.1722078, "lon": 10.1886438 }, + { "lat": 56.1722310, "lon": 10.1886522 }, + { "lat": 56.1722166, "lon": 10.1887616 }, + { "lat": 56.1721931, "lon": 10.1887518 }, + { "lat": 56.1722078, "lon": 10.1886438 } + ], + "tags": { + "access": "destination", + "amenity": "parking", + "capacity:disabled": "1", + "parking": "surface" + } +}, +{ + "type": "way", + "id": 224416078, + "bounds": { + "minlat": 56.2712622, + "minlon": 10.3050297, + "maxlat": 56.2718102, + "maxlon": 10.3060124 + }, + "geometry": [ + { "lat": 56.2713974, "lon": 10.3050297 }, + { "lat": 56.2712622, "lon": 10.3057425 }, + { "lat": 56.2716810, "lon": 10.3060124 }, + { "lat": 56.2717386, "lon": 10.3058837 }, + { "lat": 56.2718070, "lon": 10.3055363 }, + { "lat": 56.2718102, "lon": 10.3053096 }, + { "lat": 56.2713974, "lon": 10.3050297 } + ], + "tags": { + "amenity": "parking", + "capacity": "76", + "capacity:disabled": "4", + "parking": "surface" + } +}, +{ + "type": "way", + "id": 231427422, + "bounds": { + "minlat": 56.1518987, + "minlon": 10.2030347, + "maxlat": 56.1523646, + "maxlon": 10.2034265 + }, + "geometry": [ + { "lat": 56.1519150, "lon": 10.2030928 }, + { "lat": 56.1518987, "lon": 10.2032136 }, + { "lat": 56.1523344, "lon": 10.2034265 }, + { "lat": 56.1523403, "lon": 10.2034110 }, + { "lat": 56.1523532, "lon": 10.2033274 }, + { "lat": 56.1523646, "lon": 10.2032532 }, + { "lat": 56.1519240, "lon": 10.2030347 }, + { "lat": 56.1519150, "lon": 10.2030928 } + ], + "tags": { + "access": "private", + "amenity": "parking", + "capacity": "17", + "capacity:disabled": "1", + "orientation": "diagonal", + "parking": "surface" + } +}, +{ + "type": "way", + "id": 268546605, + "bounds": { + "minlat": 56.1503165, + "minlon": 10.2036038, + "maxlat": 56.1504432, + "maxlon": 10.2038177 + }, + "geometry": [ + { "lat": 56.1504432, "lon": 10.2038177 }, + { "lat": 56.1504358, "lon": 10.2037697 }, + { "lat": 56.1504298, "lon": 10.2037311 }, + { "lat": 56.1504169, "lon": 10.2036478 }, + { "lat": 56.1503659, "lon": 10.2036038 }, + { "lat": 56.1503165, "lon": 10.2036226 }, + { "lat": 56.1503423, "lon": 10.2037935 }, + { "lat": 56.1503912, "lon": 10.2037702 }, + { "lat": 56.1504432, "lon": 10.2038177 } + ], + "tags": { + "access": "yes", + "amenity": "parking", + "capacity": "2", + "capacity:disabled": "2", + "fee": "no", + "parking": "surface", + "source": "Geodatastyrelsen : FOT ortofoto" + } +}, +{ + "type": "way", + "id": 268546648, + "bounds": { + "minlat": 56.1511383, + "minlon": 10.2027409, + "maxlat": 56.1512144, + "maxlon": 10.2028174 + }, + "geometry": [ + { "lat": 56.1512089, "lon": 10.2027409 }, + { "lat": 56.1511383, "lon": 10.2027739 }, + { "lat": 56.1511435, "lon": 10.2028174 }, + { "lat": 56.1512144, "lon": 10.2027828 }, + { "lat": 56.1512089, "lon": 10.2027409 } + ], + "tags": { + "access": "yes", + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled", + "source": "Geodatastyrelsen : FOT ortofoto" + } +}, +{ + "type": "way", + "id": 268546649, + "bounds": { + "minlat": 56.1510953, + "minlon": 10.2020203, + "maxlat": 56.1512144, + "maxlon": 10.2028174 + }, + "geometry": [ + { "lat": 56.1512089, "lon": 10.2027409 }, + { "lat": 56.1512037, "lon": 10.2027002 }, + { "lat": 56.1511904, "lon": 10.2025940 }, + { "lat": 56.1511802, "lon": 10.2023111 }, + { "lat": 56.1511709, "lon": 10.2020595 }, + { "lat": 56.1510953, "lon": 10.2020203 }, + { "lat": 56.1511094, "lon": 10.2025229 }, + { "lat": 56.1511341, "lon": 10.2027362 }, + { "lat": 56.1511383, "lon": 10.2027739 }, + { "lat": 56.1511435, "lon": 10.2028174 }, + { "lat": 56.1512144, "lon": 10.2027828 }, + { "lat": 56.1512089, "lon": 10.2027409 } + ], + "tags": { + "access": "yes", + "amenity": "parking", + "capacity": "19", + "capacity:disabled": "2", + "fee": "yes", + "parking": "surface", + "source": "Geodatastyrelsen : FOT ortofoto" + } +}, +{ + "type": "way", + "id": 294333330, + "bounds": { + "minlat": 56.1893800, + "minlon": 10.1753553, + "maxlat": 56.1905511, + "maxlon": 10.1766990 + }, + "geometry": [ + { "lat": 56.1903515, "lon": 10.1757836 }, + { "lat": 56.1904377, "lon": 10.1757281 }, + { "lat": 56.1904742, "lon": 10.1757025 }, + { "lat": 56.1905117, "lon": 10.1756761 }, + { "lat": 56.1905511, "lon": 10.1756484 }, + { "lat": 56.1905254, "lon": 10.1755302 }, + { "lat": 56.1904851, "lon": 10.1753553 }, + { "lat": 56.1899937, "lon": 10.1757071 }, + { "lat": 56.1900220, "lon": 10.1758175 }, + { "lat": 56.1900220, "lon": 10.1758866 }, + { "lat": 56.1900408, "lon": 10.1760007 }, + { "lat": 56.1893800, "lon": 10.1764595 }, + { "lat": 56.1894169, "lon": 10.1766391 }, + { "lat": 56.1894403, "lon": 10.1766246 }, + { "lat": 56.1894538, "lon": 10.1766990 }, + { "lat": 56.1904049, "lon": 10.1760279 }, + { "lat": 56.1903515, "lon": 10.1757836 } + ], + "tags": { + "access": "yes", + "amenity": "parking", + "capacity": "119", + "capacity:disabled": "3", + "fee": "yes", + "name": "P8", + "parking": "surface", + "source": "survey" + } +}, +{ + "type": "way", + "id": 302899494, + "bounds": { + "minlat": 56.1733336, + "minlon": 10.2153042, + "maxlat": 56.1733830, + "maxlon": 10.2153415 + }, + "geometry": [ + { "lat": 56.1733336, "lon": 10.2153371 }, + { "lat": 56.1733345, "lon": 10.2153042 }, + { "lat": 56.1733830, "lon": 10.2153086 }, + { "lat": 56.1733821, "lon": 10.2153415 }, + { "lat": 56.1733336, "lon": 10.2153371 } + ], + "tags": { + "amenity": "parking", + "capacity": "1", + "capacity:disabled": "1", + "parking": "street_side", + "wheelchair": "yes" + } +}, +{ + "type": "way", + "id": 302902893, + "bounds": { + "minlat": 56.1452078, + "minlon": 10.1889690, + "maxlat": 56.1452924, + "maxlon": 10.1891162 + }, + "geometry": [ + { "lat": 56.1452078, "lon": 10.1890932 }, + { "lat": 56.1452801, "lon": 10.1889690 }, + { "lat": 56.1452924, "lon": 10.1889920 }, + { "lat": 56.1452200, "lon": 10.1891162 }, + { "lat": 56.1452078, "lon": 10.1890932 } + ], + "tags": { + "amenity": "parking", + "capacity": "2", + "capacity:disabled": "2", + "parking": "street_side", + "wheelchair": "yes" + } +}, +{ + "type": "way", + "id": 302903845, + "bounds": { + "minlat": 56.1477681, + "minlon": 10.1920248, + "maxlat": 56.1478074, + "maxlon": 10.1920675 + }, + "geometry": [ + { "lat": 56.1478036, "lon": 10.1920248 }, + { "lat": 56.1478074, "lon": 10.1920502 }, + { "lat": 56.1477719, "lon": 10.1920675 }, + { "lat": 56.1477681, "lon": 10.1920421 }, + { "lat": 56.1478036, "lon": 10.1920248 } + ], + "tags": { + "amenity": "parking", + "capacity": "1", + "capacity:disabled": "1", + "orientation": "parallel", + "parking": "street_side", + "wheelchair": "yes" + } +}, +{ + "type": "way", + "id": 302903907, + "bounds": { + "minlat": 56.1482591, + "minlon": 10.1933036, + "maxlat": 56.1483063, + "maxlon": 10.1933489 + }, + "geometry": [ + { "lat": 56.1483027, "lon": 10.1933036 }, + { "lat": 56.1483063, "lon": 10.1933292 }, + { "lat": 56.1482626, "lon": 10.1933489 }, + { "lat": 56.1482591, "lon": 10.1933234 }, + { "lat": 56.1483027, "lon": 10.1933036 } + ], + "tags": { + "amenity": "parking", + "capacity": "1", + "capacity:disabled": "1", + "orientation": "parallel", + "parking": "street_side", + "wheelchair": "yes" + } +}, +{ + "type": "way", + "id": 302903908, + "bounds": { + "minlat": 56.1481800, + "minlon": 10.1933401, + "maxlat": 56.1482289, + "maxlon": 10.1933837 + }, + "geometry": [ + { "lat": 56.1481831, "lon": 10.1933837 }, + { "lat": 56.1481800, "lon": 10.1933589 }, + { "lat": 56.1482257, "lon": 10.1933401 }, + { "lat": 56.1482289, "lon": 10.1933649 }, + { "lat": 56.1481831, "lon": 10.1933837 } + ], + "tags": { + "amenity": "parking", + "capacity": "1", + "capacity:disabled": "1", + "orientation": "parallel", + "parking": "street_side", + "wheelchair": "yes" + } +}, +{ + "type": "way", + "id": 302904107, + "bounds": { + "minlat": 56.1476183, + "minlon": 10.1942725, + "maxlat": 56.1476632, + "maxlon": 10.1943434 + }, + "geometry": [ + { "lat": 56.1476288, "lon": 10.1942725 }, + { "lat": 56.1476183, "lon": 10.1942978 }, + { "lat": 56.1476527, "lon": 10.1943434 }, + { "lat": 56.1476632, "lon": 10.1943181 }, + { "lat": 56.1476288, "lon": 10.1942725 } + ], + "tags": { + "amenity": "parking", + "capacity": "1", + "capacity:disabled": "1", + "orientation": "parallel", + "parking": "street_side", + "wheelchair": "yes" + } +}, +{ + "type": "way", + "id": 302904624, + "bounds": { + "minlat": 56.1478805, + "minlon": 10.1974457, + "maxlat": 56.1479383, + "maxlon": 10.1974853 + }, + "geometry": [ + { "lat": 56.1478805, "lon": 10.1974839 }, + { "lat": 56.1478808, "lon": 10.1974457 }, + { "lat": 56.1479383, "lon": 10.1974471 }, + { "lat": 56.1479380, "lon": 10.1974853 }, + { "lat": 56.1478805, "lon": 10.1974839 } + ], + "tags": { + "amenity": "parking", + "capacity": "1", + "capacity:disabled": "1", + "orientation": "parallel", + "parking": "street_side", + "wheelchair": "designated" + } +}, +{ + "type": "way", + "id": 372076169, + "bounds": { + "minlat": 56.1760878, + "minlon": 10.1367126, + "maxlat": 56.1774428, + "maxlon": 10.1376591 + }, + "geometry": [ + { "lat": 56.1774428, "lon": 10.1368157 }, + { "lat": 56.1769568, "lon": 10.1367688 }, + { "lat": 56.1769247, "lon": 10.1369168 }, + { "lat": 56.1768022, "lon": 10.1368229 }, + { "lat": 56.1766961, "lon": 10.1367345 }, + { "lat": 56.1764247, "lon": 10.1367126 }, + { "lat": 56.1761866, "lon": 10.1367575 }, + { "lat": 56.1761634, "lon": 10.1368499 }, + { "lat": 56.1761234, "lon": 10.1370089 }, + { "lat": 56.1761647, "lon": 10.1370435 }, + { "lat": 56.1760919, "lon": 10.1373312 }, + { "lat": 56.1760878, "lon": 10.1373815 }, + { "lat": 56.1760982, "lon": 10.1374237 }, + { "lat": 56.1761205, "lon": 10.1374541 }, + { "lat": 56.1763965, "lon": 10.1376571 }, + { "lat": 56.1764080, "lon": 10.1376591 }, + { "lat": 56.1764200, "lon": 10.1376484 }, + { "lat": 56.1764288, "lon": 10.1376270 }, + { "lat": 56.1764816, "lon": 10.1373902 }, + { "lat": 56.1764958, "lon": 10.1373607 }, + { "lat": 56.1765126, "lon": 10.1373496 }, + { "lat": 56.1765349, "lon": 10.1373526 }, + { "lat": 56.1766384, "lon": 10.1374335 }, + { "lat": 56.1766646, "lon": 10.1373201 }, + { "lat": 56.1767050, "lon": 10.1373502 }, + { "lat": 56.1767228, "lon": 10.1372731 }, + { "lat": 56.1766827, "lon": 10.1372432 }, + { "lat": 56.1766849, "lon": 10.1372338 }, + { "lat": 56.1767508, "lon": 10.1369531 }, + { "lat": 56.1767559, "lon": 10.1369386 }, + { "lat": 56.1767669, "lon": 10.1369295 }, + { "lat": 56.1767783, "lon": 10.1369306 }, + { "lat": 56.1769143, "lon": 10.1370306 }, + { "lat": 56.1768972, "lon": 10.1371038 }, + { "lat": 56.1769358, "lon": 10.1371329 }, + { "lat": 56.1772643, "lon": 10.1373783 }, + { "lat": 56.1772902, "lon": 10.1372682 }, + { "lat": 56.1773326, "lon": 10.1372991 }, + { "lat": 56.1774428, "lon": 10.1368157 } + ], + "tags": { + "access": "yes", + "amenity": "parking", + "capacity:charging": "2", + "capacity:disabled": "2", + "parking": "surface" + } +}, +{ + "type": "way", + "id": 380273552, + "bounds": { + "minlat": 56.1273653, + "minlon": 10.1767284, + "maxlat": 56.1274815, + "maxlon": 10.1769265 + }, + "geometry": [ + { "lat": 56.1274716, "lon": 10.1767284 }, + { "lat": 56.1274815, "lon": 10.1769017 }, + { "lat": 56.1273739, "lon": 10.1769265 }, + { "lat": 56.1273653, "lon": 10.1767614 }, + { "lat": 56.1274716, "lon": 10.1767284 } + ], + "tags": { + "access": "customers", + "amenity": "parking", + "capacity": "4", + "capacity:disabled": "2", + "fee": "no", + "parking": "street_side", + "supervised": "no" + } +}, +{ + "type": "way", + "id": 384028175, + "bounds": { + "minlat": 56.1572328, + "minlon": 10.2101549, + "maxlat": 56.1572932, + "maxlon": 10.2102509 + }, + "geometry": [ + { "lat": 56.1572442, "lon": 10.2101549 }, + { "lat": 56.1572328, "lon": 10.2102254 }, + { "lat": 56.1572819, "lon": 10.2102509 }, + { "lat": 56.1572932, "lon": 10.2101805 }, + { "lat": 56.1572442, "lon": 10.2101549 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 384028178, + "bounds": { + "minlat": 56.1571704, + "minlon": 10.2101549, + "maxlat": 56.1572932, + "maxlon": 10.2106368 + }, + "geometry": [ + { "lat": 56.1572819, "lon": 10.2102509 }, + { "lat": 56.1572692, "lon": 10.2103294 }, + { "lat": 56.1572195, "lon": 10.2106368 }, + { "lat": 56.1571704, "lon": 10.2106112 }, + { "lat": 56.1572201, "lon": 10.2103042 }, + { "lat": 56.1572328, "lon": 10.2102254 }, + { "lat": 56.1572442, "lon": 10.2101549 }, + { "lat": 56.1572932, "lon": 10.2101805 }, + { "lat": 56.1572819, "lon": 10.2102509 } + ], + "tags": { + "amenity": "parking", + "capacity:charging": "8", + "capacity:disabled": "1", + "orientation": "perpendicular", + "parking": "street_side" + } +}, +{ + "type": "way", + "id": 384028179, + "bounds": { + "minlat": 56.1522109, + "minlon": 10.2033142, + "maxlat": 56.1522732, + "maxlon": 10.2033746 + }, + "geometry": [ + { "lat": 56.1522109, "lon": 10.2033621 }, + { "lat": 56.1522493, "lon": 10.2033142 }, + { "lat": 56.1522732, "lon": 10.2033249 }, + { "lat": 56.1522334, "lon": 10.2033746 }, + { "lat": 56.1522109, "lon": 10.2033621 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled", + "wheelchair": "yes" + } +}, +{ + "type": "way", + "id": 384028180, + "bounds": { + "minlat": 56.1575606, + "minlon": 10.2100571, + "maxlat": 56.1576625, + "maxlon": 10.2101865 + }, + "geometry": [ + { "lat": 56.1576625, "lon": 10.2101038 }, + { "lat": 56.1576490, "lon": 10.2101865 }, + { "lat": 56.1575606, "lon": 10.2101397 }, + { "lat": 56.1575741, "lon": 10.2100571 }, + { "lat": 56.1576625, "lon": 10.2101038 } + ], + "tags": { + "amenity": "parking", + "capacity": "3", + "capacity:disabled": "3", + "orientation": "perpendicular", + "parking": "street_side", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 401589969, + "bounds": { + "minlat": 56.0903281, + "minlon": 10.1383689, + "maxlat": 56.0908415, + "maxlon": 10.1390814 + }, + "geometry": [ + { "lat": 56.0908415, "lon": 10.1388082 }, + { "lat": 56.0907928, "lon": 10.1390814 }, + { "lat": 56.0903281, "lon": 10.1388155 }, + { "lat": 56.0904076, "lon": 10.1383689 }, + { "lat": 56.0904605, "lon": 10.1383992 }, + { "lat": 56.0904296, "lon": 10.1385726 }, + { "lat": 56.0908415, "lon": 10.1388082 } + ], + "tags": { + "amenity": "parking", + "capacity:disabled": "yes", + "parking": "surface", + "wheelchair": "yes" + } +}, +{ + "type": "way", + "id": 432183115, + "bounds": { + "minlat": 56.0402987, + "minlon": 10.2703495, + "maxlat": 56.0403253, + "maxlon": 10.2704337 + }, + "geometry": [ + { "lat": 56.0403225, "lon": 10.2703495 }, + { "lat": 56.0403253, "lon": 10.2704311 }, + { "lat": 56.0403014, "lon": 10.2704337 }, + { "lat": 56.0402987, "lon": 10.2703521 }, + { "lat": 56.0403225, "lon": 10.2703495 } + ], + "tags": { + "access": "yes", + "amenity": "parking", + "capacity:disabled": "yes", + "fee": "no", + "parking": "surface" + } +}, +{ + "type": "way", + "id": 460195735, + "bounds": { + "minlat": 56.1967367, + "minlon": 10.1796637, + "maxlat": 56.1967858, + "maxlon": 10.1797243 + }, + "geometry": [ + { "lat": 56.1967858, "lon": 10.1796684 }, + { "lat": 56.1967385, "lon": 10.1796637 }, + { "lat": 56.1967367, "lon": 10.1797195 }, + { "lat": 56.1967840, "lon": 10.1797243 }, + { "lat": 56.1967858, "lon": 10.1796684 } + ], + "tags": { + "amenity": "parking_space", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 460195736, + "bounds": { + "minlat": 56.1967385, + "minlon": 10.1796078, + "maxlat": 56.1967876, + "maxlon": 10.1796684 + }, + "geometry": [ + { "lat": 56.1967876, "lon": 10.1796127 }, + { "lat": 56.1967403, "lon": 10.1796078 }, + { "lat": 56.1967385, "lon": 10.1796637 }, + { "lat": 56.1967858, "lon": 10.1796684 }, + { "lat": 56.1967876, "lon": 10.1796127 } + ], + "tags": { + "amenity": "parking_space", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 460195737, + "bounds": { + "minlat": 56.1967403, + "minlon": 10.1795519, + "maxlat": 56.1967893, + "maxlon": 10.1796127 + }, + "geometry": [ + { "lat": 56.1967893, "lon": 10.1795568 }, + { "lat": 56.1967420, "lon": 10.1795519 }, + { "lat": 56.1967403, "lon": 10.1796078 }, + { "lat": 56.1967876, "lon": 10.1796127 }, + { "lat": 56.1967893, "lon": 10.1795568 } + ], + "tags": { + "amenity": "parking_space", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 460195738, + "bounds": { + "minlat": 56.1968501, + "minlon": 10.1796195, + "maxlat": 56.1968992, + "maxlon": 10.1796802 + }, + "geometry": [ + { "lat": 56.1968992, "lon": 10.1796243 }, + { "lat": 56.1968519, "lon": 10.1796195 }, + { "lat": 56.1968501, "lon": 10.1796754 }, + { "lat": 56.1968974, "lon": 10.1796802 }, + { "lat": 56.1968992, "lon": 10.1796243 } + ], + "tags": { + "amenity": "parking_space", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 460195739, + "bounds": { + "minlat": 56.1968519, + "minlon": 10.1795636, + "maxlat": 56.1969010, + "maxlon": 10.1796243 + }, + "geometry": [ + { "lat": 56.1969010, "lon": 10.1795684 }, + { "lat": 56.1968537, "lon": 10.1795636 }, + { "lat": 56.1968519, "lon": 10.1796195 }, + { "lat": 56.1968992, "lon": 10.1796243 }, + { "lat": 56.1969010, "lon": 10.1795684 } + ], + "tags": { + "amenity": "parking_space", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 460200521, + "bounds": { + "minlat": 56.1986022, + "minlon": 10.1793457, + "maxlat": 56.1991353, + "maxlon": 10.1800216 + }, + "geometry": [ + { "lat": 56.1986022, "lon": 10.1798788 }, + { "lat": 56.1986197, "lon": 10.1798619 }, + { "lat": 56.1986369, "lon": 10.1798453 }, + { "lat": 56.1986153, "lon": 10.1797755 }, + { "lat": 56.1990656, "lon": 10.1793457 }, + { "lat": 56.1991001, "lon": 10.1794698 }, + { "lat": 56.1991353, "lon": 10.1795907 }, + { "lat": 56.1991300, "lon": 10.1795958 }, + { "lat": 56.1991240, "lon": 10.1796016 }, + { "lat": 56.1986906, "lon": 10.1800216 }, + { "lat": 56.1986705, "lon": 10.1799506 }, + { "lat": 56.1986532, "lon": 10.1799668 }, + { "lat": 56.1986347, "lon": 10.1799841 }, + { "lat": 56.1986022, "lon": 10.1798788 } + ], + "tags": { + "access": "yes", + "amenity": "parking", + "capacity": "42", + "capacity:disabled": "2", + "fee": "no", + "parking": "surface" + } +}, +{ + "type": "way", + "id": 460200522, + "bounds": { + "minlat": 56.1985189, + "minlon": 10.1790812, + "maxlat": 56.1990336, + "maxlon": 10.1797362 + }, + "geometry": [ + { "lat": 56.1985189, "lon": 10.1795975 }, + { "lat": 56.1985369, "lon": 10.1795803 }, + { "lat": 56.1985535, "lon": 10.1795643 }, + { "lat": 56.1985323, "lon": 10.1794930 }, + { "lat": 56.1989613, "lon": 10.1790812 }, + { "lat": 56.1989991, "lon": 10.1792086 }, + { "lat": 56.1990336, "lon": 10.1793246 }, + { "lat": 56.1986046, "lon": 10.1797362 }, + { "lat": 56.1985842, "lon": 10.1796675 }, + { "lat": 56.1985668, "lon": 10.1796842 }, + { "lat": 56.1985495, "lon": 10.1797008 }, + { "lat": 56.1985189, "lon": 10.1795975 } + ], + "tags": { + "access": "yes", + "amenity": "parking", + "capacity": "40", + "capacity:disabled": "2", + "fee": "no", + "parking": "surface" + } +}, +{ + "type": "way", + "id": 460200523, + "bounds": { + "minlat": 56.1984347, + "minlon": 10.1788139, + "maxlat": 56.1989267, + "maxlon": 10.1794550 + }, + "geometry": [ + { "lat": 56.1988544, "lon": 10.1788139 }, + { "lat": 56.1988905, "lon": 10.1789387 }, + { "lat": 56.1989267, "lon": 10.1790601 }, + { "lat": 56.1985194, "lon": 10.1794550 }, + { "lat": 56.1984989, "lon": 10.1793873 }, + { "lat": 56.1984822, "lon": 10.1794015 }, + { "lat": 56.1984646, "lon": 10.1794188 }, + { "lat": 56.1984347, "lon": 10.1793163 }, + { "lat": 56.1984516, "lon": 10.1792999 }, + { "lat": 56.1984687, "lon": 10.1792840 }, + { "lat": 56.1984467, "lon": 10.1792109 }, + { "lat": 56.1988544, "lon": 10.1788139 } + ], + "tags": { + "access": "yes", + "amenity": "parking", + "capacity": "38", + "capacity:disabled": "2", + "fee": "no", + "parking": "surface" + } +}, +{ + "type": "way", + "id": 460200524, + "bounds": { + "minlat": 56.1983489, + "minlon": 10.1785331, + "maxlat": 56.1988441, + "maxlon": 10.1791680 + }, + "geometry": [ + { "lat": 56.1987729, "lon": 10.1785331 }, + { "lat": 56.1988091, "lon": 10.1786578 }, + { "lat": 56.1988441, "lon": 10.1787789 }, + { "lat": 56.1984355, "lon": 10.1791680 }, + { "lat": 56.1984146, "lon": 10.1791003 }, + { "lat": 56.1983963, "lon": 10.1791157 }, + { "lat": 56.1983794, "lon": 10.1791321 }, + { "lat": 56.1983489, "lon": 10.1790313 }, + { "lat": 56.1983662, "lon": 10.1790141 }, + { "lat": 56.1983847, "lon": 10.1789957 }, + { "lat": 56.1983635, "lon": 10.1789266 }, + { "lat": 56.1987729, "lon": 10.1785331 } + ], + "tags": { + "access": "yes", + "amenity": "parking", + "capacity": "38", + "capacity:disabled": "2", + "fee": "no", + "parking": "surface" + } +}, +{ + "type": "way", + "id": 460200525, + "bounds": { + "minlat": 56.1982629, + "minlon": 10.1782450, + "maxlat": 56.1987597, + "maxlon": 10.1788830 + }, + "geometry": [ + { "lat": 56.1982629, "lon": 10.1787468 }, + { "lat": 56.1982831, "lon": 10.1787274 }, + { "lat": 56.1982989, "lon": 10.1787120 }, + { "lat": 56.1982780, "lon": 10.1786443 }, + { "lat": 56.1986873, "lon": 10.1782450 }, + { "lat": 56.1987233, "lon": 10.1783700 }, + { "lat": 56.1987597, "lon": 10.1784913 }, + { "lat": 56.1983515, "lon": 10.1788830 }, + { "lat": 56.1983314, "lon": 10.1788126 }, + { "lat": 56.1983105, "lon": 10.1788324 }, + { "lat": 56.1982932, "lon": 10.1788496 }, + { "lat": 56.1982629, "lon": 10.1787468 } + ], + "tags": { + "access": "yes", + "amenity": "parking", + "capacity": "38", + "capacity:disabled": "2", + "fee": "no", + "parking": "surface" + } +}, +{ + "type": "way", + "id": 460200526, + "bounds": { + "minlat": 56.1981788, + "minlon": 10.1779580, + "maxlat": 56.1986759, + "maxlon": 10.1785981 + }, + "geometry": [ + { "lat": 56.1986031, "lon": 10.1779580 }, + { "lat": 56.1986391, "lon": 10.1780830 }, + { "lat": 56.1986759, "lon": 10.1782059 }, + { "lat": 56.1982665, "lon": 10.1785981 }, + { "lat": 56.1982463, "lon": 10.1785357 }, + { "lat": 56.1982302, "lon": 10.1785495 }, + { "lat": 56.1982099, "lon": 10.1785690 }, + { "lat": 56.1981788, "lon": 10.1784626 }, + { "lat": 56.1982108, "lon": 10.1784344 }, + { "lat": 56.1982332, "lon": 10.1784134 }, + { "lat": 56.1982108, "lon": 10.1783349 }, + { "lat": 56.1986031, "lon": 10.1779580 } + ], + "tags": { + "access": "yes", + "amenity": "parking", + "capacity": "37", + "capacity:disabled": "2", + "fee": "no", + "parking": "surface" + } +}, +{ + "type": "way", + "id": 460658676, + "bounds": { + "minlat": 56.2710821, + "minlon": 10.3075550, + "maxlat": 56.2714513, + "maxlon": 10.3082749 + }, + "geometry": [ + { "lat": 56.2711869, "lon": 10.3082749 }, + { "lat": 56.2712493, "lon": 10.3081265 }, + { "lat": 56.2712711, "lon": 10.3081562 }, + { "lat": 56.2712852, "lon": 10.3081224 }, + { "lat": 56.2714513, "lon": 10.3077276 }, + { "lat": 56.2713247, "lon": 10.3075550 }, + { "lat": 56.2710821, "lon": 10.3081321 }, + { "lat": 56.2711869, "lon": 10.3082749 } + ], + "tags": { + "amenity": "parking", + "capacity": "25", + "capacity:disabled": "2", + "parking": "surface" + } +}, +{ + "type": "way", + "id": 473904763, + "bounds": { + "minlat": 56.1908870, + "minlon": 10.2099595, + "maxlat": 56.1909301, + "maxlon": 10.2100524 + }, + "geometry": [ + { "lat": 56.1909301, "lon": 10.2099776 }, + { "lat": 56.1909152, "lon": 10.2100524 }, + { "lat": 56.1908870, "lon": 10.2100342 }, + { "lat": 56.1909019, "lon": 10.2099595 }, + { "lat": 56.1909301, "lon": 10.2099776 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled", + "wheelchair": "yes" + } +}, +{ + "type": "way", + "id": 475380006, + "bounds": { + "minlat": 56.1530985, + "minlon": 10.1786061, + "maxlat": 56.1538256, + "maxlon": 10.1798635 + }, + "geometry": [ + { "lat": 56.1530985, "lon": 10.1789069 }, + { "lat": 56.1533285, "lon": 10.1795939 }, + { "lat": 56.1533449, "lon": 10.1796417 }, + { "lat": 56.1534187, "lon": 10.1798635 }, + { "lat": 56.1538256, "lon": 10.1792591 }, + { "lat": 56.1535159, "lon": 10.1786061 }, + { "lat": 56.1532594, "lon": 10.1790258 }, + { "lat": 56.1531757, "lon": 10.1788300 }, + { "lat": 56.1530985, "lon": 10.1789069 } + ], + "tags": { + "amenity": "parking", + "capacity:disabled": "1", + "parking": "surface", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 524385811, + "bounds": { + "minlat": 56.1418750, + "minlon": 10.2311435, + "maxlat": 56.1425277, + "maxlon": 10.2327856 + }, + "geometry": [ + { "lat": 56.1419763, "lon": 10.2316598 }, + { "lat": 56.1419451, "lon": 10.2316110 }, + { "lat": 56.1418750, "lon": 10.2314485 }, + { "lat": 56.1418828, "lon": 10.2313761 }, + { "lat": 56.1419124, "lon": 10.2313023 }, + { "lat": 56.1419720, "lon": 10.2312204 }, + { "lat": 56.1420459, "lon": 10.2311541 }, + { "lat": 56.1420599, "lon": 10.2311435 }, + { "lat": 56.1421046, "lon": 10.2311758 }, + { "lat": 56.1421444, "lon": 10.2313430 }, + { "lat": 56.1425218, "lon": 10.2322542 }, + { "lat": 56.1425277, "lon": 10.2323202 }, + { "lat": 56.1425128, "lon": 10.2323766 }, + { "lat": 56.1424526, "lon": 10.2324651 }, + { "lat": 56.1425267, "lon": 10.2326406 }, + { "lat": 56.1424253, "lon": 10.2327856 }, + { "lat": 56.1423562, "lon": 10.2326153 }, + { "lat": 56.1422819, "lon": 10.2323947 }, + { "lat": 56.1419763, "lon": 10.2316598 } + ], + "tags": { + "amenity": "parking", + "capacity:charging": "6", + "capacity:disabled": "2" + } +}, +{ + "type": "way", + "id": 652484745, + "bounds": { + "minlat": 56.1986001, + "minlon": 10.1572212, + "maxlat": 56.1991913, + "maxlon": 10.1583330 + }, + "geometry": [ + { "lat": 56.1987065, "lon": 10.1572212 }, + { "lat": 56.1986001, "lon": 10.1579213 }, + { "lat": 56.1986410, "lon": 10.1579414 }, + { "lat": 56.1986175, "lon": 10.1580959 }, + { "lat": 56.1990943, "lon": 10.1583330 }, + { "lat": 56.1991913, "lon": 10.1577163 }, + { "lat": 56.1990920, "lon": 10.1576577 }, + { "lat": 56.1991000, "lon": 10.1576050 }, + { "lat": 56.1989401, "lon": 10.1575264 }, + { "lat": 56.1989477, "lon": 10.1574761 }, + { "lat": 56.1988018, "lon": 10.1574044 }, + { "lat": 56.1988211, "lon": 10.1572774 }, + { "lat": 56.1987065, "lon": 10.1572212 } + ], + "tags": { + "access": "customers", + "amenity": "parking", + "capacity:disabled": "3", + "fee": "no", + "parking": "surface", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 652489484, + "bounds": { + "minlat": 56.2011876, + "minlon": 10.1553895, + "maxlat": 56.2024346, + "maxlon": 10.1579497 + }, + "geometry": [ + { "lat": 56.2021469, "lon": 10.1579497 }, + { "lat": 56.2011876, "lon": 10.1575337 }, + { "lat": 56.2014752, "lon": 10.1553895 }, + { "lat": 56.2015544, "lon": 10.1554238 }, + { "lat": 56.2019505, "lon": 10.1555955 }, + { "lat": 56.2023573, "lon": 10.1557719 }, + { "lat": 56.2024346, "lon": 10.1558054 }, + { "lat": 56.2021469, "lon": 10.1579497 } + ], + "tags": { + "access": "private", + "amenity": "parking", + "capacity:disabled": "3", + "name": "P1", + "parking": "surface" + } +}, +{ + "type": "way", + "id": 678335294, + "bounds": { + "minlat": 56.1698214, + "minlon": 10.1903360, + "maxlat": 56.1701935, + "maxlon": 10.1911530 + }, + "geometry": [ + { "lat": 56.1701935, "lon": 10.1906646 }, + { "lat": 56.1700511, "lon": 10.1906057 }, + { "lat": 56.1700835, "lon": 10.1903741 }, + { "lat": 56.1699973, "lon": 10.1903360 }, + { "lat": 56.1699256, "lon": 10.1908894 }, + { "lat": 56.1698386, "lon": 10.1908513 }, + { "lat": 56.1698214, "lon": 10.1909960 }, + { "lat": 56.1699471, "lon": 10.1910700 }, + { "lat": 56.1701358, "lon": 10.1911530 }, + { "lat": 56.1701935, "lon": 10.1906646 } + ], + "tags": { + "access": "private", + "amenity": "parking", + "capacity": "55", + "capacity:disabled": "3", + "operator:type": "private", + "parking": "surface", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 699224144, + "bounds": { + "minlat": 56.1173365, + "minlon": 10.1525860, + "maxlat": 56.1173888, + "maxlon": 10.1526784 + }, + "geometry": [ + { "lat": 56.1173888, "lon": 10.1526280 }, + { "lat": 56.1173575, "lon": 10.1526784 }, + { "lat": 56.1173365, "lon": 10.1526364 }, + { "lat": 56.1173677, "lon": 10.1525860 }, + { "lat": 56.1173888, "lon": 10.1526280 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "disabled": "designated", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 699224145, + "bounds": { + "minlat": 56.1173986, + "minlon": 10.1527147, + "maxlat": 56.1174509, + "maxlon": 10.1528067 + }, + "geometry": [ + { "lat": 56.1174509, "lon": 10.1527573 }, + { "lat": 56.1174191, "lon": 10.1528067 }, + { "lat": 56.1173986, "lon": 10.1527640 }, + { "lat": 56.1174304, "lon": 10.1527147 }, + { "lat": 56.1174509, "lon": 10.1527573 } + ], + "tags": { + "access": "no", + "amenity": "parking_space", + "disabled": "designated", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 699224146, + "bounds": { + "minlat": 56.1163026, + "minlon": 10.1528478, + "maxlat": 56.1163467, + "maxlon": 10.1529406 + }, + "geometry": [ + { "lat": 56.1163467, "lon": 10.1528661 }, + { "lat": 56.1163327, "lon": 10.1529406 }, + { "lat": 56.1163026, "lon": 10.1529223 }, + { "lat": 56.1163166, "lon": 10.1528478 }, + { "lat": 56.1163467, "lon": 10.1528661 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "disabled": "designated", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 699224148, + "bounds": { + "minlat": 56.1152975, + "minlon": 10.1525459, + "maxlat": 56.1153442, + "maxlon": 10.1526388 + }, + "geometry": [ + { "lat": 56.1153268, "lon": 10.1525459 }, + { "lat": 56.1153442, "lon": 10.1526151 }, + { "lat": 56.1153148, "lon": 10.1526388 }, + { "lat": 56.1152975, "lon": 10.1525696 }, + { "lat": 56.1153188, "lon": 10.1525524 }, + { "lat": 56.1153268, "lon": 10.1525459 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "disabled": "designated", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 699224149, + "bounds": { + "minlat": 56.1153014, + "minlon": 10.1524595, + "maxlat": 56.1153481, + "maxlon": 10.1525524 + }, + "geometry": [ + { "lat": 56.1153307, "lon": 10.1524595 }, + { "lat": 56.1153481, "lon": 10.1525287 }, + { "lat": 56.1153268, "lon": 10.1525459 }, + { "lat": 56.1153188, "lon": 10.1525524 }, + { "lat": 56.1153014, "lon": 10.1524832 }, + { "lat": 56.1153307, "lon": 10.1524595 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "disabled": "designated", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 699224150, + "bounds": { + "minlat": 56.1156235, + "minlon": 10.1519853, + "maxlat": 56.1156750, + "maxlon": 10.1520752 + }, + "geometry": [ + { "lat": 56.1156668, "lon": 10.1519853 }, + { "lat": 56.1156750, "lon": 10.1520600 }, + { "lat": 56.1156316, "lon": 10.1520752 }, + { "lat": 56.1156235, "lon": 10.1520006 }, + { "lat": 56.1156668, "lon": 10.1519853 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "disabled": "designated", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 699224151, + "bounds": { + "minlat": 56.1161422, + "minlon": 10.1516825, + "maxlat": 56.1161949, + "maxlon": 10.1517677 + }, + "geometry": [ + { "lat": 56.1161949, "lon": 10.1516921 }, + { "lat": 56.1161902, "lon": 10.1517677 }, + { "lat": 56.1161422, "lon": 10.1517581 }, + { "lat": 56.1161469, "lon": 10.1516825 }, + { "lat": 56.1161949, "lon": 10.1516921 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "disabled": "designated", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 699224152, + "bounds": { + "minlat": 56.1166830, + "minlon": 10.1516317, + "maxlat": 56.1167245, + "maxlon": 10.1517207 + }, + "geometry": [ + { "lat": 56.1167245, "lon": 10.1516464 }, + { "lat": 56.1167133, "lon": 10.1517207 }, + { "lat": 56.1166830, "lon": 10.1517059 }, + { "lat": 56.1166942, "lon": 10.1516317 }, + { "lat": 56.1167245, "lon": 10.1516464 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "disabled": "designated", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 699224153, + "bounds": { + "minlat": 56.1165360, + "minlon": 10.1518447, + "maxlat": 56.1165824, + "maxlon": 10.1519364 + }, + "geometry": [ + { "lat": 56.1165824, "lon": 10.1518651 }, + { "lat": 56.1165682, "lon": 10.1519364 }, + { "lat": 56.1165577, "lon": 10.1519295 }, + { "lat": 56.1165360, "lon": 10.1519156 }, + { "lat": 56.1165501, "lon": 10.1518447 }, + { "lat": 56.1165824, "lon": 10.1518651 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "disabled": "designated", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 699224154, + "bounds": { + "minlat": 56.1165682, + "minlon": 10.1518651, + "maxlat": 56.1166147, + "maxlon": 10.1519587 + }, + "geometry": [ + { "lat": 56.1166147, "lon": 10.1518868 }, + { "lat": 56.1166003, "lon": 10.1519587 }, + { "lat": 56.1165784, "lon": 10.1519434 }, + { "lat": 56.1165682, "lon": 10.1519364 }, + { "lat": 56.1165824, "lon": 10.1518651 }, + { "lat": 56.1166147, "lon": 10.1518868 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "disabled": "designated", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 701012881, + "bounds": { + "minlat": 56.2032170, + "minlon": 10.2333359, + "maxlat": 56.2035483, + "maxlon": 10.2335484 + }, + "geometry": [ + { "lat": 56.2034992, "lon": 10.2334981 }, + { "lat": 56.2032170, "lon": 10.2334186 }, + { "lat": 56.2032242, "lon": 10.2333359 }, + { "lat": 56.2035483, "lon": 10.2334271 }, + { "lat": 56.2035476, "lon": 10.2334357 }, + { "lat": 56.2035378, "lon": 10.2335484 }, + { "lat": 56.2034958, "lon": 10.2335366 }, + { "lat": 56.2034992, "lon": 10.2334981 } + ], + "tags": { + "access": "permit", + "amenity": "parking", + "capacity": "4", + "capacity:disabled": "3", + "orientation": "perpendicular", + "parking": "street_side", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 701054367, + "bounds": { + "minlat": 56.1875794, + "minlon": 10.1718136, + "maxlat": 56.1882305, + "maxlon": 10.1729161 + }, + "geometry": [ + { "lat": 56.1875794, "lon": 10.1722038 }, + { "lat": 56.1877351, "lon": 10.1729161 }, + { "lat": 56.1880261, "lon": 10.1727458 }, + { "lat": 56.1879611, "lon": 10.1724458 }, + { "lat": 56.1879124, "lon": 10.1724724 }, + { "lat": 56.1879068, "lon": 10.1724529 }, + { "lat": 56.1882305, "lon": 10.1721214 }, + { "lat": 56.1881629, "lon": 10.1718136 }, + { "lat": 56.1878811, "lon": 10.1719420 }, + { "lat": 56.1875912, "lon": 10.1721403 }, + { "lat": 56.1875794, "lon": 10.1722038 } + ], + "tags": { + "amenity": "parking", + "capacity": "67", + "capacity:disabled": "4", + "fee": "yes", + "name": "P5", + "operator": "APCOA Parking", + "operator:type": "private", + "operator:wikidata": "Q296108", + "parking": "surface", + "supervised": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 713180804, + "bounds": { + "minlat": 56.1722755, + "minlon": 10.1935025, + "maxlat": 56.1726088, + "maxlon": 10.1938461 + }, + "geometry": [ + { "lat": 56.1722755, "lon": 10.1936926 }, + { "lat": 56.1722915, "lon": 10.1935911 }, + { "lat": 56.1723054, "lon": 10.1935025 }, + { "lat": 56.1725326, "lon": 10.1936172 }, + { "lat": 56.1726088, "lon": 10.1936564 }, + { "lat": 56.1725864, "lon": 10.1937986 }, + { "lat": 56.1725824, "lon": 10.1938202 }, + { "lat": 56.1725778, "lon": 10.1938461 }, + { "lat": 56.1724736, "lon": 10.1937904 }, + { "lat": 56.1722755, "lon": 10.1936926 } + ], + "tags": { + "access": "private", + "amenity": "parking", + "capacity": "9", + "capacity:disabled": "1", + "parking": "surface", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 734927543, + "bounds": { + "minlat": 56.1478976, + "minlon": 10.1888081, + "maxlat": 56.1482510, + "maxlon": 10.1912061 + }, + "geometry": [ + { "lat": 56.1480649, "lon": 10.1888081 }, + { "lat": 56.1482510, "lon": 10.1898019 }, + { "lat": 56.1481939, "lon": 10.1898381 }, + { "lat": 56.1480250, "lon": 10.1899367 }, + { "lat": 56.1482444, "lon": 10.1911486 }, + { "lat": 56.1481459, "lon": 10.1912061 }, + { "lat": 56.1481299, "lon": 10.1910961 }, + { "lat": 56.1480732, "lon": 10.1909164 }, + { "lat": 56.1480640, "lon": 10.1908309 }, + { "lat": 56.1480583, "lon": 10.1907775 }, + { "lat": 56.1478976, "lon": 10.1892762 }, + { "lat": 56.1479424, "lon": 10.1892574 }, + { "lat": 56.1479066, "lon": 10.1889114 }, + { "lat": 56.1480649, "lon": 10.1888081 } + ], + "tags": { + "access": "private", + "access:conditional": "yes @ Mo-Su 18:00-06:00", + "amenity": "parking", + "capacity:disabled": "1", + "fee": "no", + "fee:conditional": "yes @ Mo-Su 18:00-06:00", + "parking": "surface" + } +}, +{ + "type": "way", + "id": 949168448, + "bounds": { + "minlat": 56.1502769, + "minlon": 10.0895758, + "maxlat": 56.1505510, + "maxlon": 10.0898644 + }, + "geometry": [ + { "lat": 56.1505436, "lon": 10.0895758 }, + { "lat": 56.1505510, "lon": 10.0898403 }, + { "lat": 56.1502843, "lon": 10.0898644 }, + { "lat": 56.1502769, "lon": 10.0895999 }, + { "lat": 56.1505436, "lon": 10.0895758 } + ], + "tags": { + "amenity": "parking", + "capacity": "21", + "capacity:disabled": "1", + "parking": "surface", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 998382663, + "bounds": { + "minlat": 56.1703246, + "minlon": 10.1757213, + "maxlat": 56.1708360, + "maxlon": 10.1763909 + }, + "geometry": [ + { "lat": 56.1708360, "lon": 10.1763462 }, + { "lat": 56.1708266, "lon": 10.1757213 }, + { "lat": 56.1703246, "lon": 10.1757919 }, + { "lat": 56.1703431, "lon": 10.1763909 }, + { "lat": 56.1708360, "lon": 10.1763462 } + ], + "tags": { + "amenity": "parking", + "capacity:disabled": "6" + } +}, +{ + "type": "way", + "id": 1007190677, + "bounds": { + "minlat": 56.1549570, + "minlon": 10.2063419, + "maxlat": 56.1552428, + "maxlon": 10.2069895 + }, + "geometry": [ + { "lat": 56.1551116, "lon": 10.2063419 }, + { "lat": 56.1549570, "lon": 10.2068539 }, + { "lat": 56.1550895, "lon": 10.2069895 }, + { "lat": 56.1552428, "lon": 10.2065201 }, + { "lat": 56.1551116, "lon": 10.2063419 } + ], + "tags": { + "amenity": "parking", + "capacity": "20", + "capacity:disabled": "2", + "parking": "surface", + "wheelchair": "yes" + } +}, +{ + "type": "way", + "id": 1009150182, + "bounds": { + "minlat": 56.1702723, + "minlon": 10.2041710, + "maxlat": 56.1704535, + "maxlon": 10.2043689 + }, + "geometry": [ + { "lat": 56.1704328, "lon": 10.2041710 }, + { "lat": 56.1704405, "lon": 10.2041958 }, + { "lat": 56.1704535, "lon": 10.2042379 }, + { "lat": 56.1703750, "lon": 10.2043111 }, + { "lat": 56.1702884, "lon": 10.2043689 }, + { "lat": 56.1702779, "lon": 10.2043163 }, + { "lat": 56.1702723, "lon": 10.2042885 }, + { "lat": 56.1703599, "lon": 10.2042361 }, + { "lat": 56.1704328, "lon": 10.2041710 } + ], + "tags": { + "amenity": "parking", + "capacity": "7", + "capacity:disabled": "1", + "parking": "surface", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1039832836, + "bounds": { + "minlat": 56.2086195, + "minlon": 10.1888993, + "maxlat": 56.2091647, + "maxlon": 10.1892588 + }, + "geometry": [ + { "lat": 56.2091498, "lon": 10.1888993 }, + { "lat": 56.2091565, "lon": 10.1889583 }, + { "lat": 56.2091647, "lon": 10.1890174 }, + { "lat": 56.2086642, "lon": 10.1892588 }, + { "lat": 56.2086195, "lon": 10.1889959 }, + { "lat": 56.2091498, "lon": 10.1888993 } + ], + "tags": { + "amenity": "parking", + "capacity:disabled": "1" + } +}, +{ + "type": "way", + "id": 1104381931, + "bounds": { + "minlat": 56.1438502, + "minlon": 10.1987172, + "maxlat": 56.1439623, + "maxlon": 10.1989850 + }, + "geometry": [ + { "lat": 56.1438502, "lon": 10.1987418 }, + { "lat": 56.1439421, "lon": 10.1987172 }, + { "lat": 56.1439491, "lon": 10.1988008 }, + { "lat": 56.1439044, "lon": 10.1988128 }, + { "lat": 56.1439109, "lon": 10.1988902 }, + { "lat": 56.1439555, "lon": 10.1988782 }, + { "lat": 56.1439623, "lon": 10.1989604 }, + { "lat": 56.1438704, "lon": 10.1989850 }, + { "lat": 56.1438502, "lon": 10.1987418 } + ], + "tags": { + "amenity": "parking", + "capacity:disabled": "1", + "parking": "surface" + } +}, +{ + "type": "way", + "id": 1115776184, + "bounds": { + "minlat": 56.1693222, + "minlon": 10.2098274, + "maxlat": 56.1696108, + "maxlon": 10.2110728 + }, + "geometry": [ + { "lat": 56.1695669, "lon": 10.2110728 }, + { "lat": 56.1696108, "lon": 10.2110443 }, + { "lat": 56.1693663, "lon": 10.2098274 }, + { "lat": 56.1693222, "lon": 10.2098559 }, + { "lat": 56.1695669, "lon": 10.2110728 } + ], + "tags": { + "amenity": "parking", + "capacity:disabled": "30", + "orientation": "perpendicular", + "parking": "street_side" + } +}, +{ + "type": "way", + "id": 1120805283, + "bounds": { + "minlat": 56.1765425, + "minlon": 10.1346966, + "maxlat": 56.1769428, + "maxlon": 10.1364715 + }, + "geometry": [ + { "lat": 56.1769428, "lon": 10.1361715 }, + { "lat": 56.1769339, "lon": 10.1364715 }, + { "lat": 56.1765425, "lon": 10.1364325 }, + { "lat": 56.1765448, "lon": 10.1362689 }, + { "lat": 56.1765467, "lon": 10.1362001 }, + { "lat": 56.1765483, "lon": 10.1361239 }, + { "lat": 56.1765770, "lon": 10.1361258 }, + { "lat": 56.1766075, "lon": 10.1354455 }, + { "lat": 56.1766534, "lon": 10.1354547 }, + { "lat": 56.1766917, "lon": 10.1346966 }, + { "lat": 56.1768625, "lon": 10.1347264 }, + { "lat": 56.1768395, "lon": 10.1353196 }, + { "lat": 56.1767529, "lon": 10.1353218 }, + { "lat": 56.1767312, "lon": 10.1361463 }, + { "lat": 56.1769428, "lon": 10.1361715 } + ], + "tags": { + "access": "yes", + "amenity": "parking", + "capacity:charging": "1", + "capacity:disabled": "2", + "fee": "no", + "parking": "surface" + } +}, +{ + "type": "way", + "id": 1145422964, + "bounds": { + "minlat": 56.1848960, + "minlon": 10.1874250, + "maxlat": 56.1850784, + "maxlon": 10.1878028 + }, + "geometry": [ + { "lat": 56.1850784, "lon": 10.1876087 }, + { "lat": 56.1850201, "lon": 10.1876531 }, + { "lat": 56.1850409, "lon": 10.1877413 }, + { "lat": 56.1849601, "lon": 10.1878028 }, + { "lat": 56.1848960, "lon": 10.1875309 }, + { "lat": 56.1850352, "lon": 10.1874250 }, + { "lat": 56.1850784, "lon": 10.1876087 } + ], + "tags": { + "access": "private", + "amenity": "parking", + "capacity": "9", + "capacity:disabled": "1", + "parking": "surface", + "smoothness": "excellent", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1169932402, + "bounds": { + "minlat": 56.1491675, + "minlon": 10.2058894, + "maxlat": 56.1492021, + "maxlon": 10.2059728 + }, + "geometry": [ + { "lat": 56.1492021, "lon": 10.2058984 }, + { "lat": 56.1491944, "lon": 10.2059728 }, + { "lat": 56.1491675, "lon": 10.2059638 }, + { "lat": 56.1491753, "lon": 10.2058894 }, + { "lat": 56.1492021, "lon": 10.2058984 } + ], + "tags": { + "amenity": "parking", + "capacity": "1", + "capacity:disabled": "1", + "orientation": "perpendicular", + "parking": "street_side" + } +}, +{ + "type": "way", + "id": 1169932403, + "bounds": { + "minlat": 56.1491287, + "minlon": 10.2058750, + "maxlat": 56.1491633, + "maxlon": 10.2059584 + }, + "geometry": [ + { "lat": 56.1491633, "lon": 10.2058840 }, + { "lat": 56.1491555, "lon": 10.2059584 }, + { "lat": 56.1491287, "lon": 10.2059494 }, + { "lat": 56.1491365, "lon": 10.2058750 }, + { "lat": 56.1491633, "lon": 10.2058840 } + ], + "tags": { + "amenity": "parking", + "capacity": "1", + "capacity:disabled": "1", + "orientation": "perpendicular", + "parking": "street_side" + } +}, +{ + "type": "way", + "id": 1170983458, + "bounds": { + "minlat": 56.1865522, + "minlon": 10.1876642, + "maxlat": 56.1868423, + "maxlon": 10.1885168 + }, + "geometry": [ + { "lat": 56.1866631, "lon": 10.1876743 }, + { "lat": 56.1866351, "lon": 10.1876642 }, + { "lat": 56.1865522, "lon": 10.1877252 }, + { "lat": 56.1865696, "lon": 10.1878028 }, + { "lat": 56.1865946, "lon": 10.1879097 }, + { "lat": 56.1867365, "lon": 10.1885168 }, + { "lat": 56.1868314, "lon": 10.1884452 }, + { "lat": 56.1868423, "lon": 10.1884230 }, + { "lat": 56.1868266, "lon": 10.1883597 }, + { "lat": 56.1867486, "lon": 10.1880340 }, + { "lat": 56.1867129, "lon": 10.1878833 }, + { "lat": 56.1866631, "lon": 10.1876743 } + ], + "tags": { + "amenity": "parking", + "capacity:charging": "4", + "capacity:disabled": "3" + } +}, +{ + "type": "way", + "id": 1175981984, + "bounds": { + "minlat": 56.1702113, + "minlon": 10.1638707, + "maxlat": 56.1705444, + "maxlon": 10.1641555 + }, + "geometry": [ + { "lat": 56.1705444, "lon": 10.1641555 }, + { "lat": 56.1702113, "lon": 10.1640314 }, + { "lat": 56.1702148, "lon": 10.1638707 }, + { "lat": 56.1705408, "lon": 10.1639057 }, + { "lat": 56.1705444, "lon": 10.1641555 } + ], + "tags": { + "amenity": "parking", + "capacity": "16", + "capacity:disabled": "2", + "parking": "surface" + } +}, +{ + "type": "way", + "id": 1180104359, + "bounds": { + "minlat": 56.1904120, + "minlon": 10.1755838, + "maxlat": 56.1904742, + "maxlon": 10.1757281 + }, + "geometry": [ + { "lat": 56.1904492, "lon": 10.1755838 }, + { "lat": 56.1904120, "lon": 10.1756099 }, + { "lat": 56.1904377, "lon": 10.1757281 }, + { "lat": 56.1904742, "lon": 10.1757025 }, + { "lat": 56.1904492, "lon": 10.1755838 } + ], + "tags": { + "amenity": "parking_space", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1180104360, + "bounds": { + "minlat": 56.1904871, + "minlon": 10.1755302, + "maxlat": 56.1905511, + "maxlon": 10.1756761 + }, + "geometry": [ + { "lat": 56.1905117, "lon": 10.1756761 }, + { "lat": 56.1905511, "lon": 10.1756484 }, + { "lat": 56.1905254, "lon": 10.1755302 }, + { "lat": 56.1904871, "lon": 10.1755571 }, + { "lat": 56.1905117, "lon": 10.1756761 } + ], + "tags": { + "amenity": "parking_space", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1180104362, + "bounds": { + "minlat": 56.1904492, + "minlon": 10.1755571, + "maxlat": 56.1905117, + "maxlon": 10.1757025 + }, + "geometry": [ + { "lat": 56.1904742, "lon": 10.1757025 }, + { "lat": 56.1905117, "lon": 10.1756761 }, + { "lat": 56.1904871, "lon": 10.1755571 }, + { "lat": 56.1904492, "lon": 10.1755838 }, + { "lat": 56.1904742, "lon": 10.1757025 } + ], + "tags": { + "amenity": "parking_space", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1180104373, + "bounds": { + "minlat": 56.1886085, + "minlon": 10.1739903, + "maxlat": 56.1886567, + "maxlon": 10.1740560 + }, + "geometry": [ + { "lat": 56.1886529, "lon": 10.1739903 }, + { "lat": 56.1886567, "lon": 10.1740251 }, + { "lat": 56.1886160, "lon": 10.1740560 }, + { "lat": 56.1886085, "lon": 10.1740245 }, + { "lat": 56.1886529, "lon": 10.1739903 } + ], + "tags": { + "amenity": "parking_space", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1180104374, + "bounds": { + "minlat": 56.1886529, + "minlon": 10.1739849, + "maxlat": 56.1887003, + "maxlon": 10.1740251 + }, + "geometry": [ + { "lat": 56.1886529, "lon": 10.1739903 }, + { "lat": 56.1886992, "lon": 10.1739849 }, + { "lat": 56.1887003, "lon": 10.1740178 }, + { "lat": 56.1886567, "lon": 10.1740251 }, + { "lat": 56.1886529, "lon": 10.1739903 } + ], + "tags": { + "amenity": "parking_space", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1180104385, + "bounds": { + "minlat": 56.1902321, + "minlon": 10.1736588, + "maxlat": 56.1902943, + "maxlon": 10.1737553 + }, + "geometry": [ + { "lat": 56.1902810, "lon": 10.1736588 }, + { "lat": 56.1902943, "lon": 10.1737189 }, + { "lat": 56.1902453, "lon": 10.1737553 }, + { "lat": 56.1902321, "lon": 10.1736935 }, + { "lat": 56.1902810, "lon": 10.1736588 } + ], + "tags": { + "amenity": "parking_space", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1180104386, + "bounds": { + "minlat": 56.1902190, + "minlon": 10.1735993, + "maxlat": 56.1902810, + "maxlon": 10.1736935 + }, + "geometry": [ + { "lat": 56.1902321, "lon": 10.1736935 }, + { "lat": 56.1902190, "lon": 10.1736322 }, + { "lat": 56.1902678, "lon": 10.1735993 }, + { "lat": 56.1902810, "lon": 10.1736588 }, + { "lat": 56.1902321, "lon": 10.1736935 } + ], + "tags": { + "amenity": "parking_space", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1180104390, + "bounds": { + "minlat": 56.1902440, + "minlon": 10.1750766, + "maxlat": 56.1902966, + "maxlon": 10.1751424 + }, + "geometry": [ + { "lat": 56.1902875, "lon": 10.1750766 }, + { "lat": 56.1902966, "lon": 10.1751188 }, + { "lat": 56.1902580, "lon": 10.1751424 }, + { "lat": 56.1902524, "lon": 10.1751163 }, + { "lat": 56.1902440, "lon": 10.1751054 }, + { "lat": 56.1902875, "lon": 10.1750766 } + ], + "tags": { + "amenity": "parking_space", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1180544298, + "bounds": { + "minlat": 56.1832145, + "minlon": 10.1061762, + "maxlat": 56.1832532, + "maxlon": 10.1063419 + }, + "geometry": [ + { "lat": 56.1832145, "lon": 10.1061762 }, + { "lat": 56.1832532, "lon": 10.1061762 }, + { "lat": 56.1832532, "lon": 10.1063419 }, + { "lat": 56.1832145, "lon": 10.1063419 }, + { "lat": 56.1832145, "lon": 10.1061762 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "3", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1180544299, + "bounds": { + "minlat": 56.1831101, + "minlon": 10.1061743, + "maxlat": 56.1831465, + "maxlon": 10.1063439 + }, + "geometry": [ + { "lat": 56.1831457, "lon": 10.1061743 }, + { "lat": 56.1831465, "lon": 10.1063434 }, + { "lat": 56.1831108, "lon": 10.1063439 }, + { "lat": 56.1831101, "lon": 10.1061748 }, + { "lat": 56.1831457, "lon": 10.1061743 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "3", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1180544300, + "bounds": { + "minlat": 56.1830360, + "minlon": 10.1034893, + "maxlat": 56.1831260, + "maxlon": 10.1036004 + }, + "geometry": [ + { "lat": 56.1830360, "lon": 10.1034912 }, + { "lat": 56.1831253, "lon": 10.1034893 }, + { "lat": 56.1831260, "lon": 10.1035985 }, + { "lat": 56.1830367, "lon": 10.1036004 }, + { "lat": 56.1830360, "lon": 10.1034912 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "4", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1180544301, + "bounds": { + "minlat": 56.1827321, + "minlon": 10.1034940, + "maxlat": 56.1828196, + "maxlon": 10.1036026 + }, + "geometry": [ + { "lat": 56.1828196, "lon": 10.1034941 }, + { "lat": 56.1828196, "lon": 10.1036026 }, + { "lat": 56.1827321, "lon": 10.1036025 }, + { "lat": 56.1827321, "lon": 10.1034940 }, + { "lat": 56.1828196, "lon": 10.1034941 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "4", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1180544611, + "bounds": { + "minlat": 56.1834502, + "minlon": 10.1005759, + "maxlat": 56.1835552, + "maxlon": 10.1007346 + }, + "geometry": [ + { "lat": 56.1834502, "lon": 10.1006868 }, + { "lat": 56.1834693, "lon": 10.1005759 }, + { "lat": 56.1835552, "lon": 10.1006236 }, + { "lat": 56.1835362, "lon": 10.1007346 }, + { "lat": 56.1834502, "lon": 10.1006868 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "4", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1180544707, + "bounds": { + "minlat": 56.1806748, + "minlon": 10.0969319, + "maxlat": 56.1807434, + "maxlon": 10.0970614 + }, + "geometry": [ + { "lat": 56.1806748, "lon": 10.0969762 }, + { "lat": 56.1807116, "lon": 10.0970614 }, + { "lat": 56.1807434, "lon": 10.0970171 }, + { "lat": 56.1807067, "lon": 10.0969319 }, + { "lat": 56.1806748, "lon": 10.0969762 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "2", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1180924175, + "bounds": { + "minlat": 56.1661251, + "minlon": 10.2118232, + "maxlat": 56.1662083, + "maxlon": 10.2120810 + }, + "geometry": [ + { "lat": 56.1661251, "lon": 10.2120571 }, + { "lat": 56.1661659, "lon": 10.2118232 }, + { "lat": 56.1662083, "lon": 10.2118471 }, + { "lat": 56.1661674, "lon": 10.2120810 }, + { "lat": 56.1661251, "lon": 10.2120571 } + ], + "tags": { + "amenity": "parking", + "capacity": "5", + "capacity:disabled": "5", + "orientation": "perpendicular", + "parking": "surface", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1180925043, + "bounds": { + "minlat": 56.1561151, + "minlon": 10.2102936, + "maxlat": 56.1561991, + "maxlon": 10.2105437 + }, + "geometry": [ + { "lat": 56.1561298, "lon": 10.2102936 }, + { "lat": 56.1561991, "lon": 10.2105298 }, + { "lat": 56.1561845, "lon": 10.2105437 }, + { "lat": 56.1561151, "lon": 10.2103074 }, + { "lat": 56.1561298, "lon": 10.2102936 } + ], + "tags": { + "amenity": "parking", + "capacity": "3", + "capacity:disabled": "3", + "orientation": "parallel", + "parking": "street_side" + } +}, +{ + "type": "way", + "id": 1180925044, + "bounds": { + "minlat": 56.1562885, + "minlon": 10.2108831, + "maxlat": 56.1564034, + "maxlon": 10.2112349 + }, + "geometry": [ + { "lat": 56.1563868, "lon": 10.2112349 }, + { "lat": 56.1564034, "lon": 10.2112193 }, + { "lat": 56.1563050, "lon": 10.2108831 }, + { "lat": 56.1562885, "lon": 10.2108986 }, + { "lat": 56.1563868, "lon": 10.2112349 } + ], + "tags": { + "amenity": "parking", + "capacity": "4", + "capacity:disabled": "4", + "orientation": "parallel", + "parking": "street_side" + } +}, +{ + "type": "way", + "id": 1180931401, + "bounds": { + "minlat": 56.1528614, + "minlon": 10.2113011, + "maxlat": 56.1529113, + "maxlon": 10.2113765 + }, + "geometry": [ + { "lat": 56.1528614, "lon": 10.2113520 }, + { "lat": 56.1529017, "lon": 10.2113765 }, + { "lat": 56.1529113, "lon": 10.2113256 }, + { "lat": 56.1528710, "lon": 10.2113011 }, + { "lat": 56.1528614, "lon": 10.2113520 } + ], + "tags": { + "amenity": "parking", + "capacity": "1", + "capacity:disabled": "1", + "parking": "surface", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1181267216, + "bounds": { + "minlat": 56.1936877, + "minlon": 10.2079778, + "maxlat": 56.1937359, + "maxlon": 10.2080537 + }, + "geometry": [ + { "lat": 56.1937359, "lon": 10.2080045 }, + { "lat": 56.1937250, "lon": 10.2080537 }, + { "lat": 56.1936877, "lon": 10.2080271 }, + { "lat": 56.1936985, "lon": 10.2079778 }, + { "lat": 56.1937359, "lon": 10.2080045 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1181267217, + "bounds": { + "minlat": 56.1936557, + "minlon": 10.2080626, + "maxlat": 56.1937165, + "maxlon": 10.2081918 + }, + "geometry": [ + { "lat": 56.1937165, "lon": 10.2080905 }, + { "lat": 56.1936934, "lon": 10.2081918 }, + { "lat": 56.1936557, "lon": 10.2081639 }, + { "lat": 56.1936788, "lon": 10.2080626 }, + { "lat": 56.1937165, "lon": 10.2080905 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "2", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1181267218, + "bounds": { + "minlat": 56.1937320, + "minlon": 10.2080314, + "maxlat": 56.1937812, + "maxlon": 10.2081109 + }, + "geometry": [ + { "lat": 56.1937812, "lon": 10.2080587 }, + { "lat": 56.1937693, "lon": 10.2081109 }, + { "lat": 56.1937320, "lon": 10.2080836 }, + { "lat": 56.1937438, "lon": 10.2080314 }, + { "lat": 56.1937812, "lon": 10.2080587 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1181267219, + "bounds": { + "minlat": 56.1937066, + "minlon": 10.2081106, + "maxlat": 56.1937647, + "maxlon": 10.2082270 + }, + "geometry": [ + { "lat": 56.1937647, "lon": 10.2081384 }, + { "lat": 56.1937447, "lon": 10.2082270 }, + { "lat": 56.1937066, "lon": 10.2081993 }, + { "lat": 56.1937266, "lon": 10.2081106 }, + { "lat": 56.1937647, "lon": 10.2081384 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "2", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1181861773, + "bounds": { + "minlat": 56.1522237, + "minlon": 10.1985809, + "maxlat": 56.1522839, + "maxlon": 10.1986941 + }, + "geometry": [ + { "lat": 56.1522237, "lon": 10.1986520 }, + { "lat": 56.1522392, "lon": 10.1985809 }, + { "lat": 56.1522839, "lon": 10.1985912 }, + { "lat": 56.1522716, "lon": 10.1986941 }, + { "lat": 56.1522237, "lon": 10.1986520 } + ], + "tags": { + "amenity": "parking_space", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1181944200, + "bounds": { + "minlat": 56.2036810, + "minlon": 10.1802931, + "maxlat": 56.2037899, + "maxlon": 10.1804589 + }, + "geometry": [ + { "lat": 56.2037657, "lon": 10.1802931 }, + { "lat": 56.2037899, "lon": 10.1803928 }, + { "lat": 56.2037049, "lon": 10.1804589 }, + { "lat": 56.2036810, "lon": 10.1803593 }, + { "lat": 56.2037657, "lon": 10.1802931 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "6", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1181944202, + "bounds": { + "minlat": 56.2032843, + "minlon": 10.1791633, + "maxlat": 56.2034175, + "maxlon": 10.1795925 + }, + "geometry": [ + { "lat": 56.2032843, "lon": 10.1791903 }, + { "lat": 56.2033180, "lon": 10.1791633 }, + { "lat": 56.2034175, "lon": 10.1795655 }, + { "lat": 56.2033837, "lon": 10.1795925 }, + { "lat": 56.2032843, "lon": 10.1791903 } + ], + "tags": { + "amenity": "parking_space", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1185046743, + "bounds": { + "minlat": 56.1507024, + "minlon": 10.2529067, + "maxlat": 56.1507889, + "maxlon": 10.2530957 + }, + "geometry": [ + { "lat": 56.1507024, "lon": 10.2529479 }, + { "lat": 56.1507425, "lon": 10.2530957 }, + { "lat": 56.1507889, "lon": 10.2530541 }, + { "lat": 56.1507501, "lon": 10.2529067 }, + { "lat": 56.1507024, "lon": 10.2529479 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "3", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1185046744, + "bounds": { + "minlat": 56.1507505, + "minlon": 10.2530838, + "maxlat": 56.1508096, + "maxlon": 10.2531729 + }, + "geometry": [ + { "lat": 56.1507505, "lon": 10.2531237 }, + { "lat": 56.1507632, "lon": 10.2531729 }, + { "lat": 56.1508096, "lon": 10.2531325 }, + { "lat": 56.1507967, "lon": 10.2530838 }, + { "lat": 56.1507505, "lon": 10.2531237 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1204431304, + "bounds": { + "minlat": 56.1544159, + "minlon": 10.1910357, + "maxlat": 56.1545280, + "maxlon": 10.1912194 + }, + "geometry": [ + { "lat": 56.1545242, "lon": 10.1910357 }, + { "lat": 56.1545280, "lon": 10.1911202 }, + { "lat": 56.1544398, "lon": 10.1912194 }, + { "lat": 56.1544159, "lon": 10.1911511 }, + { "lat": 56.1545242, "lon": 10.1910357 } + ], + "tags": { + "amenity": "parking", + "capacity": "1", + "capacity:disabled": "1", + "parking": "street_side" + } +}, +{ + "type": "way", + "id": 1209208135, + "bounds": { + "minlat": 56.2187169, + "minlon": 10.1672796, + "maxlat": 56.2188105, + "maxlon": 10.1674640 + }, + "geometry": [ + { "lat": 56.2187714, "lon": 10.1673072 }, + { "lat": 56.2187169, "lon": 10.1672796 }, + { "lat": 56.2187531, "lon": 10.1674293 }, + { "lat": 56.2188105, "lon": 10.1674640 }, + { "lat": 56.2187714, "lon": 10.1673072 } + ], + "tags": { + "access": "customers", + "amenity": "parking", + "capacity:disabled": "3", + "fee": "no", + "parking": "surface", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 1225703643, + "bounds": { + "minlat": 56.1439765, + "minlon": 10.1982786, + "maxlat": 56.1440550, + "maxlon": 10.1983938 + }, + "geometry": [ + { "lat": 56.1439765, "lon": 10.1982986 }, + { "lat": 56.1439834, "lon": 10.1983938 }, + { "lat": 56.1440550, "lon": 10.1983774 }, + { "lat": 56.1440481, "lon": 10.1982786 }, + { "lat": 56.1439765, "lon": 10.1982986 } + ], + "tags": { + "amenity": "parking", + "capacity": "2", + "capacity:disabled": "2", + "parking": "surface" + } +}, +{ + "type": "way", + "id": 1246239955, + "bounds": { + "minlat": 56.0887645, + "minlon": 10.2479635, + "maxlat": 56.0888243, + "maxlon": 10.2480684 + }, + "geometry": [ + { "lat": 56.0888243, "lon": 10.2479955 }, + { "lat": 56.0887829, "lon": 10.2479635 }, + { "lat": 56.0887789, "lon": 10.2479722 }, + { "lat": 56.0887748, "lon": 10.2479786 }, + { "lat": 56.0887697, "lon": 10.2479843 }, + { "lat": 56.0887645, "lon": 10.2479884 }, + { "lat": 56.0887778, "lon": 10.2480684 }, + { "lat": 56.0887850, "lon": 10.2480633 }, + { "lat": 56.0887972, "lon": 10.2480511 }, + { "lat": 56.0888079, "lon": 10.2480355 }, + { "lat": 56.0888174, "lon": 10.2480159 }, + { "lat": 56.0888243, "lon": 10.2479955 } + ], + "tags": { + "amenity": "parking_space", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1249246264, + "bounds": { + "minlat": 56.1526125, + "minlon": 10.2074858, + "maxlat": 56.1527393, + "maxlon": 10.2080231 + }, + "geometry": [ + { "lat": 56.1527159, "lon": 10.2074858 }, + { "lat": 56.1526125, "lon": 10.2080082 }, + { "lat": 56.1526360, "lon": 10.2080231 }, + { "lat": 56.1527393, "lon": 10.2075008 }, + { "lat": 56.1527159, "lon": 10.2074858 } + ], + "tags": { + "amenity": "parking", + "capacity": "5", + "capacity:disabled": "1", + "orientation": "parallel", + "parking": "street_side" + } +}, +{ + "type": "way", + "id": 1252141576, + "bounds": { + "minlat": 56.1864794, + "minlon": 10.2266862, + "maxlat": 56.1865262, + "maxlon": 10.2268226 + }, + "geometry": [ + { "lat": 56.1864794, "lon": 10.2268168 }, + { "lat": 56.1865262, "lon": 10.2268226 }, + { "lat": 56.1865125, "lon": 10.2266897 }, + { "lat": 56.1864853, "lon": 10.2266862 }, + { "lat": 56.1864794, "lon": 10.2268168 } + ], + "tags": { + "access": "unknown", + "amenity": "parking", + "capacity": "0", + "capacity:disabled": "1", + "parking": "surface", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1259782429, + "bounds": { + "minlat": 56.0373328, + "minlon": 10.0832138, + "maxlat": 56.0374962, + "maxlon": 10.0836673 + }, + "geometry": [ + { "lat": 56.0374962, "lon": 10.0832669 }, + { "lat": 56.0374395, "lon": 10.0835662 }, + { "lat": 56.0374296, "lon": 10.0836188 }, + { "lat": 56.0374204, "lon": 10.0836673 }, + { "lat": 56.0373328, "lon": 10.0836142 }, + { "lat": 56.0374086, "lon": 10.0832138 }, + { "lat": 56.0374962, "lon": 10.0832669 } + ], + "tags": { + "amenity": "parking", + "capacity:charging": "2", + "capacity:disabled": "2", + "parking": "surface" + } +}, +{ + "type": "way", + "id": 1263319626, + "bounds": { + "minlat": 56.1664851, + "minlon": 10.2260670, + "maxlat": 56.1665739, + "maxlon": 10.2261958 + }, + "geometry": [ + { "lat": 56.1665584, "lon": 10.2260670 }, + { "lat": 56.1665739, "lon": 10.2261097 }, + { "lat": 56.1665007, "lon": 10.2261958 }, + { "lat": 56.1664851, "lon": 10.2261531 }, + { "lat": 56.1665584, "lon": 10.2260670 } + ], + "tags": { + "access": "yes", + "amenity": "parking", + "capacity": "2", + "capacity:disabled": "2", + "fee": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1263320059, + "bounds": { + "minlat": 56.1662936, + "minlon": 10.2263448, + "maxlat": 56.1663429, + "maxlon": 10.2264258 + }, + "geometry": [ + { "lat": 56.1663282, "lon": 10.2263448 }, + { "lat": 56.1663429, "lon": 10.2263846 }, + { "lat": 56.1663083, "lon": 10.2264258 }, + { "lat": 56.1662936, "lon": 10.2263859 }, + { "lat": 56.1663282, "lon": 10.2263448 } + ], + "tags": { + "access": "yes", + "amenity": "parking", + "capacity": "1", + "capacity:disabled": "1", + "fee": "no" + } +}, +{ + "type": "way", + "id": 1263320853, + "bounds": { + "minlat": 56.1664269, + "minlon": 10.2259661, + "maxlat": 56.1664753, + "maxlon": 10.2260459 + }, + "geometry": [ + { "lat": 56.1664753, "lon": 10.2260031 }, + { "lat": 56.1664413, "lon": 10.2260459 }, + { "lat": 56.1664269, "lon": 10.2260089 }, + { "lat": 56.1664608, "lon": 10.2259661 }, + { "lat": 56.1664753, "lon": 10.2260031 } + ], + "tags": { + "access": "yes", + "amenity": "parking", + "capacity": "1", + "capacity:disabled": "1" + } +}, +{ + "type": "way", + "id": 1263320854, + "bounds": { + "minlat": 56.1663700, + "minlon": 10.2260334, + "maxlat": 56.1664184, + "maxlon": 10.2261132 + }, + "geometry": [ + { "lat": 56.1664184, "lon": 10.2260704 }, + { "lat": 56.1663844, "lon": 10.2261132 }, + { "lat": 56.1663700, "lon": 10.2260762 }, + { "lat": 56.1664039, "lon": 10.2260334 }, + { "lat": 56.1664184, "lon": 10.2260704 } + ], + "tags": { + "access": "yes", + "amenity": "parking", + "capacity": "1", + "capacity:disabled": "1" + } +}, +{ + "type": "way", + "id": 1263320855, + "bounds": { + "minlat": 56.1663131, + "minlon": 10.2261007, + "maxlat": 56.1663615, + "maxlon": 10.2261804 + }, + "geometry": [ + { "lat": 56.1663615, "lon": 10.2261376 }, + { "lat": 56.1663275, "lon": 10.2261804 }, + { "lat": 56.1663131, "lon": 10.2261435 }, + { "lat": 56.1663470, "lon": 10.2261007 }, + { "lat": 56.1663615, "lon": 10.2261376 } + ], + "tags": { + "access": "yes", + "amenity": "parking", + "capacity": "1", + "capacity:disabled": "1" + } +}, +{ + "type": "way", + "id": 1263320856, + "bounds": { + "minlat": 56.1661654, + "minlon": 10.2262812, + "maxlat": 56.1662139, + "maxlon": 10.2263610 + }, + "geometry": [ + { "lat": 56.1662139, "lon": 10.2263182 }, + { "lat": 56.1661799, "lon": 10.2263610 }, + { "lat": 56.1661654, "lon": 10.2263240 }, + { "lat": 56.1661994, "lon": 10.2262812 }, + { "lat": 56.1662139, "lon": 10.2263182 } + ], + "tags": { + "access": "yes", + "amenity": "parking", + "capacity": "1", + "capacity:disabled": "1" + } +}, +{ + "type": "way", + "id": 1263321180, + "bounds": { + "minlat": 56.1680824, + "minlon": 10.2186845, + "maxlat": 56.1681187, + "maxlon": 10.2187272 + }, + "geometry": [ + { "lat": 56.1681187, "lon": 10.2186994 }, + { "lat": 56.1681147, "lon": 10.2187272 }, + { "lat": 56.1680824, "lon": 10.2187122 }, + { "lat": 56.1680864, "lon": 10.2186845 }, + { "lat": 56.1681187, "lon": 10.2186994 } + ], + "tags": { + "access": "yes", + "amenity": "parking", + "capacity": "1", + "capacity:disabled": "1" + } +}, +{ + "type": "way", + "id": 1263321181, + "bounds": { + "minlat": 56.1680253, + "minlon": 10.2186619, + "maxlat": 56.1680615, + "maxlon": 10.2187046 + }, + "geometry": [ + { "lat": 56.1680615, "lon": 10.2186769 }, + { "lat": 56.1680575, "lon": 10.2187046 }, + { "lat": 56.1680253, "lon": 10.2186897 }, + { "lat": 56.1680293, "lon": 10.2186619 }, + { "lat": 56.1680615, "lon": 10.2186769 } + ], + "tags": { + "access": "yes", + "amenity": "parking", + "capacity": "1", + "capacity:disabled": "1" + } +}, +{ + "type": "way", + "id": 1263321182, + "bounds": { + "minlat": 56.1679825, + "minlon": 10.2186422, + "maxlat": 56.1680188, + "maxlon": 10.2186849 + }, + "geometry": [ + { "lat": 56.1680188, "lon": 10.2186572 }, + { "lat": 56.1680148, "lon": 10.2186849 }, + { "lat": 56.1679825, "lon": 10.2186700 }, + { "lat": 56.1679865, "lon": 10.2186422 }, + { "lat": 56.1680188, "lon": 10.2186572 } + ], + "tags": { + "access": "yes", + "amenity": "parking", + "capacity": "1", + "capacity:disabled": "1", + "parking": "lane" + } +}, +{ + "type": "way", + "id": 1263523967, + "bounds": { + "minlat": 56.1507628, + "minlon": 10.2059609, + "maxlat": 56.1508098, + "maxlon": 10.2061342 + }, + "geometry": [ + { "lat": 56.1507841, "lon": 10.2059609 }, + { "lat": 56.1507628, "lon": 10.2059718 }, + { "lat": 56.1507884, "lon": 10.2061342 }, + { "lat": 56.1508098, "lon": 10.2061233 }, + { "lat": 56.1507841, "lon": 10.2059609 } + ], + "tags": { + "amenity": "parking", + "capacity": "2", + "capacity:disabled": "1", + "orientation": "parallel", + "parking": "street_side" + } +}, +{ + "type": "way", + "id": 1263523976, + "bounds": { + "minlat": 56.1540840, + "minlon": 10.2138289, + "maxlat": 56.1541608, + "maxlon": 10.2141838 + }, + "geometry": [ + { "lat": 56.1541081, "lon": 10.2138289 }, + { "lat": 56.1541608, "lon": 10.2141718 }, + { "lat": 56.1541367, "lon": 10.2141838 }, + { "lat": 56.1540840, "lon": 10.2138408 }, + { "lat": 56.1541081, "lon": 10.2138289 } + ], + "tags": { + "amenity": "parking", + "capacity": "4", + "capacity:disabled": "1", + "parking": "street_side", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1263523981, + "bounds": { + "minlat": 56.1554816, + "minlon": 10.2110701, + "maxlat": 56.1555422, + "maxlon": 10.2111850 + }, + "geometry": [ + { "lat": 56.1555422, "lon": 10.2110999 }, + { "lat": 56.1554967, "lon": 10.2111850 }, + { "lat": 56.1554816, "lon": 10.2111587 }, + { "lat": 56.1555251, "lon": 10.2110701 }, + { "lat": 56.1555422, "lon": 10.2110999 } + ], + "tags": { + "amenity": "parking", + "capacity": "2", + "capacity:disabled": "2", + "orientation": "parallel", + "parking": "street_side", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1263523986, + "bounds": { + "minlat": 56.1668299, + "minlon": 10.2254496, + "maxlat": 56.1670946, + "maxlon": 10.2257971 + }, + "geometry": [ + { "lat": 56.1670946, "lon": 10.2255091 }, + { "lat": 56.1670768, "lon": 10.2254496 }, + { "lat": 56.1670137, "lon": 10.2255241 }, + { "lat": 56.1669549, "lon": 10.2255935 }, + { "lat": 56.1668949, "lon": 10.2256642 }, + { "lat": 56.1668299, "lon": 10.2257409 }, + { "lat": 56.1668485, "lon": 10.2257971 }, + { "lat": 56.1669131, "lon": 10.2257215 }, + { "lat": 56.1669727, "lon": 10.2256517 }, + { "lat": 56.1670322, "lon": 10.2255803 }, + { "lat": 56.1670946, "lon": 10.2255091 } + ], + "tags": { + "amenity": "parking", + "capacity": "4", + "capacity:disabled": "4", + "orientation": "parallel", + "parking": "street_side" + } +}, +{ + "type": "way", + "id": 1263980653, + "bounds": { + "minlat": 56.1548169, + "minlon": 10.1811537, + "maxlat": 56.1548771, + "maxlon": 10.1823870 + }, + "geometry": [ + { "lat": 56.1548732, "lon": 10.1811584 }, + { "lat": 56.1548771, "lon": 10.1823864 }, + { "lat": 56.1548253, "lon": 10.1823870 }, + { "lat": 56.1548185, "lon": 10.1813468 }, + { "lat": 56.1548169, "lon": 10.1811537 }, + { "lat": 56.1548732, "lon": 10.1811584 } + ], + "tags": { + "amenity": "parking", + "capacity": "32", + "capacity:disabled": "1", + "orientation": "perpendicular", + "parking": "street_side", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1280358874, + "bounds": { + "minlat": 56.1702403, + "minlon": 10.1925913, + "maxlat": 56.1702963, + "maxlon": 10.1926792 + }, + "geometry": [ + { "lat": 56.1702829, "lon": 10.1925913 }, + { "lat": 56.1702403, "lon": 10.1926447 }, + { "lat": 56.1702538, "lon": 10.1926792 }, + { "lat": 56.1702963, "lon": 10.1926258 }, + { "lat": 56.1702829, "lon": 10.1925913 } + ], + "tags": { + "amenity": "parking_space", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1280362581, + "bounds": { + "minlat": 56.1710630, + "minlon": 10.1928037, + "maxlat": 56.1711454, + "maxlon": 10.1928989 + }, + "geometry": [ + { "lat": 56.1711454, "lon": 10.1928421 }, + { "lat": 56.1710722, "lon": 10.1928037 }, + { "lat": 56.1710630, "lon": 10.1928605 }, + { "lat": 56.1711361, "lon": 10.1928989 }, + { "lat": 56.1711454, "lon": 10.1928421 } + ], + "tags": { + "amenity": "parking", + "capacity": "1", + "capacity:disabled": "1", + "parking": "street_side" + } +}, +{ + "type": "way", + "id": 1283539020, + "bounds": { + "minlat": 56.1848278, + "minlon": 10.2125609, + "maxlat": 56.1849195, + "maxlon": 10.2127216 + }, + "geometry": [ + { "lat": 56.1849195, "lon": 10.2125872 }, + { "lat": 56.1849054, "lon": 10.2127216 }, + { "lat": 56.1848747, "lon": 10.2127168 }, + { "lat": 56.1848278, "lon": 10.2127095 }, + { "lat": 56.1848424, "lon": 10.2125609 }, + { "lat": 56.1849195, "lon": 10.2125872 } + ], + "tags": { + "access": "yes", + "amenity": "parking", + "capacity": "3", + "capacity:disabled": "1", + "fee": "yes", + "operator": "Apkoa", + "operator:type": "private", + "parking": "surface", + "payment:app": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 1283539021, + "bounds": { + "minlat": 56.1846798, + "minlon": 10.2124679, + "maxlat": 56.1848210, + "maxlon": 10.2126933 + }, + "geometry": [ + { "lat": 56.1848210, "lon": 10.2125498 }, + { "lat": 56.1847822, "lon": 10.2126933 }, + { "lat": 56.1847294, "lon": 10.2126516 }, + { "lat": 56.1846798, "lon": 10.2126124 }, + { "lat": 56.1847192, "lon": 10.2124679 }, + { "lat": 56.1848210, "lon": 10.2125498 } + ], + "tags": { + "access": "yes", + "amenity": "parking", + "capacity": "5", + "capacity:disabled": "1", + "fee": "yes", + "operator": "Apkoa", + "operator:type": "private", + "parking": "surface", + "payment:app": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 1283539023, + "bounds": { + "minlat": 56.1844127, + "minlon": 10.2122819, + "maxlat": 56.1845122, + "maxlon": 10.2126347 + }, + "geometry": [ + { "lat": 56.1844127, "lon": 10.2126003 }, + { "lat": 56.1844712, "lon": 10.2126347 }, + { "lat": 56.1845122, "lon": 10.2123173 }, + { "lat": 56.1844537, "lon": 10.2122819 }, + { "lat": 56.1844127, "lon": 10.2126003 } + ], + "tags": { + "access": "private", + "amenity": "parking", + "capacity:disabled": "8", + "operator": "Apkoa", + "operator:type": "private", + "parking": "surface", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 1296711528, + "bounds": { + "minlat": 56.1727718, + "minlon": 10.1915727, + "maxlat": 56.1729585, + "maxlon": 10.1918643 + }, + "geometry": [ + { "lat": 56.1729585, "lon": 10.1916371 }, + { "lat": 56.1728014, "lon": 10.1915727 }, + { "lat": 56.1727718, "lon": 10.1917962 }, + { "lat": 56.1727857, "lon": 10.1918015 }, + { "lat": 56.1728253, "lon": 10.1918180 }, + { "lat": 56.1728902, "lon": 10.1918469 }, + { "lat": 56.1729295, "lon": 10.1918643 }, + { "lat": 56.1729585, "lon": 10.1916371 } + ], + "tags": { + "access": "customers", + "amenity": "parking", + "capacity": "10", + "capacity:disabled": "1", + "fee": "no", + "parking": "surface" + } +}, +{ + "type": "way", + "id": 1307490572, + "bounds": { + "minlat": 56.1689157, + "minlon": 10.1168083, + "maxlat": 56.1690397, + "maxlon": 10.1172522 + }, + "geometry": [ + { "lat": 56.1689497, "lon": 10.1168150 }, + { "lat": 56.1689157, "lon": 10.1168592 }, + { "lat": 56.1689284, "lon": 10.1172522 }, + { "lat": 56.1690397, "lon": 10.1172388 }, + { "lat": 56.1690270, "lon": 10.1168083 }, + { "lat": 56.1689497, "lon": 10.1168150 } + ], + "tags": { + "amenity": "parking", + "capacity:disabled": "2", + "fee": "no", + "parking": "surface" + } +}, +{ + "type": "way", + "id": 1322856613, + "bounds": { + "minlat": 56.2374649, + "minlon": 10.2327826, + "maxlat": 56.2375170, + "maxlon": 10.2328924 + }, + "geometry": [ + { "lat": 56.2375170, "lon": 10.2328688 }, + { "lat": 56.2374801, "lon": 10.2328924 }, + { "lat": 56.2374649, "lon": 10.2328036 }, + { "lat": 56.2374996, "lon": 10.2327826 }, + { "lat": 56.2375170, "lon": 10.2328688 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1324193153, + "bounds": { + "minlat": 56.2312387, + "minlon": 10.2353339, + "maxlat": 56.2313240, + "maxlon": 10.2354631 + }, + "geometry": [ + { "lat": 56.2312571, "lon": 10.2354631 }, + { "lat": 56.2313240, "lon": 10.2354091 }, + { "lat": 56.2313054, "lon": 10.2353339 }, + { "lat": 56.2312387, "lon": 10.2353857 }, + { "lat": 56.2312571, "lon": 10.2354631 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1324193176, + "bounds": { + "minlat": 56.2311810, + "minlon": 10.2355335, + "maxlat": 56.2312300, + "maxlon": 10.2356728 + }, + "geometry": [ + { "lat": 56.2312155, "lon": 10.2355335 }, + { "lat": 56.2311810, "lon": 10.2356127 }, + { "lat": 56.2311951, "lon": 10.2356728 }, + { "lat": 56.2312300, "lon": 10.2355960 }, + { "lat": 56.2312155, "lon": 10.2355335 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1329105565, + "bounds": { + "minlat": 56.2373577, + "minlon": 10.2340207, + "maxlat": 56.2374132, + "maxlon": 10.2341027 + }, + "geometry": [ + { "lat": 56.2374132, "lon": 10.2340733 }, + { "lat": 56.2374026, "lon": 10.2340207 }, + { "lat": 56.2373577, "lon": 10.2340500 }, + { "lat": 56.2373683, "lon": 10.2341027 }, + { "lat": 56.2374132, "lon": 10.2340733 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1329105566, + "bounds": { + "minlat": 56.2373683, + "minlon": 10.2340733, + "maxlat": 56.2374235, + "maxlon": 10.2341529 + }, + "geometry": [ + { "lat": 56.2374132, "lon": 10.2340733 }, + { "lat": 56.2374235, "lon": 10.2341224 }, + { "lat": 56.2373781, "lon": 10.2341529 }, + { "lat": 56.2373683, "lon": 10.2341027 }, + { "lat": 56.2374132, "lon": 10.2340733 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1347046022, + "bounds": { + "minlat": 56.1898357, + "minlon": 10.1679326, + "maxlat": 56.1899614, + "maxlon": 10.1685399 + }, + "geometry": [ + { "lat": 56.1898784, "lon": 10.1679326 }, + { "lat": 56.1898357, "lon": 10.1679582 }, + { "lat": 56.1898694, "lon": 10.1681895 }, + { "lat": 56.1898777, "lon": 10.1682468 }, + { "lat": 56.1898861, "lon": 10.1683040 }, + { "lat": 56.1898940, "lon": 10.1683585 }, + { "lat": 56.1899020, "lon": 10.1684135 }, + { "lat": 56.1899092, "lon": 10.1684632 }, + { "lat": 56.1898796, "lon": 10.1684760 }, + { "lat": 56.1898861, "lon": 10.1685399 }, + { "lat": 56.1899614, "lon": 10.1685058 }, + { "lat": 56.1899524, "lon": 10.1684437 }, + { "lat": 56.1899450, "lon": 10.1683923 }, + { "lat": 56.1899368, "lon": 10.1683359 }, + { "lat": 56.1899290, "lon": 10.1682817 }, + { "lat": 56.1899207, "lon": 10.1682244 }, + { "lat": 56.1899125, "lon": 10.1681678 }, + { "lat": 56.1898784, "lon": 10.1679326 } + ], + "tags": { + "amenity": "parking", + "capacity": "12", + "capacity:disabled": "6", + "parking": "street_side" + } +}, +{ + "type": "way", + "id": 1368819791, + "bounds": { + "minlat": 56.1525917, + "minlon": 10.1912279, + "maxlat": 56.1526486, + "maxlon": 10.1913302 + }, + "geometry": [ + { "lat": 56.1525917, "lon": 10.1912825 }, + { "lat": 56.1526156, "lon": 10.1912279 }, + { "lat": 56.1526486, "lon": 10.1912774 }, + { "lat": 56.1526256, "lon": 10.1913302 }, + { "lat": 56.1525917, "lon": 10.1912825 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1374371712, + "bounds": { + "minlat": 56.2757218, + "minlon": 10.3143167, + "maxlat": 56.2763078, + "maxlon": 10.3153431 + }, + "geometry": [ + { "lat": 56.2759680, "lon": 10.3151366 }, + { "lat": 56.2759307, "lon": 10.3151044 }, + { "lat": 56.2759413, "lon": 10.3150645 }, + { "lat": 56.2759215, "lon": 10.3150462 }, + { "lat": 56.2758944, "lon": 10.3150214 }, + { "lat": 56.2758558, "lon": 10.3149839 }, + { "lat": 56.2757218, "lon": 10.3148572 }, + { "lat": 56.2757825, "lon": 10.3146661 }, + { "lat": 56.2758536, "lon": 10.3146701 }, + { "lat": 56.2759098, "lon": 10.3143167 }, + { "lat": 56.2760033, "lon": 10.3143235 }, + { "lat": 56.2760626, "lon": 10.3143526 }, + { "lat": 56.2760254, "lon": 10.3145856 }, + { "lat": 56.2759856, "lon": 10.3145652 }, + { "lat": 56.2759389, "lon": 10.3148472 }, + { "lat": 56.2760135, "lon": 10.3148964 }, + { "lat": 56.2760237, "lon": 10.3148337 }, + { "lat": 56.2763078, "lon": 10.3149819 }, + { "lat": 56.2762819, "lon": 10.3152677 }, + { "lat": 56.2762615, "lon": 10.3153431 }, + { "lat": 56.2762169, "lon": 10.3153035 }, + { "lat": 56.2759772, "lon": 10.3151021 }, + { "lat": 56.2759680, "lon": 10.3151366 } + ], + "tags": { + "amenity": "parking", + "capacity:charging": "2", + "capacity:disabled": "2", + "parking": "surface" + } +}, +{ + "type": "way", + "id": 1374690739, + "bounds": { + "minlat": 56.1387500, + "minlon": 10.2116843, + "maxlat": 56.1388243, + "maxlon": 10.2118382 + }, + "geometry": [ + { "lat": 56.1387968, "lon": 10.2118382 }, + { "lat": 56.1388243, "lon": 10.2117191 }, + { "lat": 56.1387775, "lon": 10.2116843 }, + { "lat": 56.1387500, "lon": 10.2118033 }, + { "lat": 56.1387968, "lon": 10.2118382 } + ], + "tags": { + "access": "yes", + "amenity": "parking_space", + "capacity": "2", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1377165736, + "bounds": { + "minlat": 56.1450044, + "minlon": 10.2056306, + "maxlat": 56.1450928, + "maxlon": 10.2057147 + }, + "geometry": [ + { "lat": 56.1450928, "lon": 10.2056361 }, + { "lat": 56.1450062, "lon": 10.2056306 }, + { "lat": 56.1450044, "lon": 10.2057084 }, + { "lat": 56.1450907, "lon": 10.2057147 }, + { "lat": 56.1450928, "lon": 10.2056361 } + ], + "tags": { + "amenity": "parking", + "capacity": "2", + "capacity:disabled": "2" + } +}, +{ + "type": "way", + "id": 1383807183, + "bounds": { + "minlat": 56.1933734, + "minlon": 10.1646002, + "maxlat": 56.1934224, + "maxlon": 10.1647174 + }, + "geometry": [ + { "lat": 56.1933886, "lon": 10.1646157 }, + { "lat": 56.1933734, "lon": 10.1647174 }, + { "lat": 56.1934073, "lon": 10.1647031 }, + { "lat": 56.1934224, "lon": 10.1646002 }, + { "lat": 56.1933886, "lon": 10.1646157 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1383839011, + "bounds": { + "minlat": 56.1898796, + "minlon": 10.1684437, + "maxlat": 56.1899614, + "maxlon": 10.1685399 + }, + "geometry": [ + { "lat": 56.1899524, "lon": 10.1684437 }, + { "lat": 56.1899092, "lon": 10.1684632 }, + { "lat": 56.1898796, "lon": 10.1684760 }, + { "lat": 56.1898861, "lon": 10.1685399 }, + { "lat": 56.1899614, "lon": 10.1685058 }, + { "lat": 56.1899524, "lon": 10.1684437 } + ], + "tags": { + "amenity": "parking_space", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1383839013, + "bounds": { + "minlat": 56.1931907, + "minlon": 10.1701028, + "maxlat": 56.1932325, + "maxlon": 10.1701506 + }, + "geometry": [ + { "lat": 56.1932325, "lon": 10.1701053 }, + { "lat": 56.1932324, "lon": 10.1701506 }, + { "lat": 56.1931907, "lon": 10.1701496 }, + { "lat": 56.1931915, "lon": 10.1701028 }, + { "lat": 56.1932325, "lon": 10.1701053 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1383839014, + "bounds": { + "minlat": 56.1931904, + "minlon": 10.1701496, + "maxlat": 56.1932324, + "maxlon": 10.1701984 + }, + "geometry": [ + { "lat": 56.1932324, "lon": 10.1701506 }, + { "lat": 56.1932320, "lon": 10.1701984 }, + { "lat": 56.1931904, "lon": 10.1701974 }, + { "lat": 56.1931907, "lon": 10.1701496 }, + { "lat": 56.1932324, "lon": 10.1701506 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1383839015, + "bounds": { + "minlat": 56.1933148, + "minlon": 10.1706868, + "maxlat": 56.1933652, + "maxlon": 10.1707787 + }, + "geometry": [ + { "lat": 56.1933652, "lon": 10.1707218 }, + { "lat": 56.1933359, "lon": 10.1707787 }, + { "lat": 56.1933148, "lon": 10.1707436 }, + { "lat": 56.1933446, "lon": 10.1706868 }, + { "lat": 56.1933652, "lon": 10.1707218 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1383839016, + "bounds": { + "minlat": 56.1932962, + "minlon": 10.1706552, + "maxlat": 56.1933446, + "maxlon": 10.1707436 + }, + "geometry": [ + { "lat": 56.1933446, "lon": 10.1706868 }, + { "lat": 56.1933148, "lon": 10.1707436 }, + { "lat": 56.1932962, "lon": 10.1707120 }, + { "lat": 56.1933260, "lon": 10.1706552 }, + { "lat": 56.1933446, "lon": 10.1706868 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1383839017, + "bounds": { + "minlat": 56.1940719, + "minlon": 10.1703128, + "maxlat": 56.1941241, + "maxlon": 10.1703960 + }, + "geometry": [ + { "lat": 56.1940719, "lon": 10.1703400 }, + { "lat": 56.1940835, "lon": 10.1703960 }, + { "lat": 56.1941241, "lon": 10.1703687 }, + { "lat": 56.1941125, "lon": 10.1703128 }, + { "lat": 56.1940719, "lon": 10.1703400 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1383839018, + "bounds": { + "minlat": 56.1940835, + "minlon": 10.1703687, + "maxlat": 56.1941359, + "maxlon": 10.1704531 + }, + "geometry": [ + { "lat": 56.1940835, "lon": 10.1703960 }, + { "lat": 56.1940955, "lon": 10.1704531 }, + { "lat": 56.1941359, "lon": 10.1704255 }, + { "lat": 56.1941241, "lon": 10.1703687 }, + { "lat": 56.1940835, "lon": 10.1703960 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1383839019, + "bounds": { + "minlat": 56.1940955, + "minlon": 10.1704255, + "maxlat": 56.1941489, + "maxlon": 10.1705156 + }, + "geometry": [ + { "lat": 56.1940955, "lon": 10.1704531 }, + { "lat": 56.1941085, "lon": 10.1705156 }, + { "lat": 56.1941489, "lon": 10.1704900 }, + { "lat": 56.1941359, "lon": 10.1704255 }, + { "lat": 56.1940955, "lon": 10.1704531 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1383839022, + "bounds": { + "minlat": 56.1934509, + "minlon": 10.1688599, + "maxlat": 56.1935025, + "maxlon": 10.1689426 + }, + "geometry": [ + { "lat": 56.1935025, "lon": 10.1689164 }, + { "lat": 56.1934912, "lon": 10.1688599 }, + { "lat": 56.1934509, "lon": 10.1688861 }, + { "lat": 56.1934622, "lon": 10.1689426 }, + { "lat": 56.1935025, "lon": 10.1689164 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1383839023, + "bounds": { + "minlat": 56.1920864, + "minlon": 10.1660033, + "maxlat": 56.1921389, + "maxlon": 10.1660932 + }, + "geometry": [ + { "lat": 56.1921218, "lon": 10.1660033 }, + { "lat": 56.1920864, "lon": 10.1660411 }, + { "lat": 56.1921035, "lon": 10.1660932 }, + { "lat": 56.1921389, "lon": 10.1660564 }, + { "lat": 56.1921218, "lon": 10.1660033 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1383839024, + "bounds": { + "minlat": 56.1921035, + "minlon": 10.1660564, + "maxlat": 56.1921554, + "maxlon": 10.1661444 + }, + "geometry": [ + { "lat": 56.1921389, "lon": 10.1660564 }, + { "lat": 56.1921554, "lon": 10.1661075 }, + { "lat": 56.1921200, "lon": 10.1661444 }, + { "lat": 56.1921035, "lon": 10.1660932 }, + { "lat": 56.1921389, "lon": 10.1660564 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1383839025, + "bounds": { + "minlat": 56.1921200, + "minlon": 10.1661075, + "maxlat": 56.1921715, + "maxlon": 10.1661949 + }, + "geometry": [ + { "lat": 56.1921554, "lon": 10.1661075 }, + { "lat": 56.1921715, "lon": 10.1661582 }, + { "lat": 56.1921364, "lon": 10.1661949 }, + { "lat": 56.1921200, "lon": 10.1661444 }, + { "lat": 56.1921554, "lon": 10.1661075 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1383839026, + "bounds": { + "minlat": 56.1921364, + "minlon": 10.1661582, + "maxlat": 56.1921909, + "maxlon": 10.1662537 + }, + "geometry": [ + { "lat": 56.1921715, "lon": 10.1661582 }, + { "lat": 56.1921909, "lon": 10.1662166 }, + { "lat": 56.1921548, "lon": 10.1662537 }, + { "lat": 56.1921364, "lon": 10.1661949 }, + { "lat": 56.1921715, "lon": 10.1661582 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1383839027, + "bounds": { + "minlat": 56.1921805, + "minlon": 10.1662984, + "maxlat": 56.1922334, + "maxlon": 10.1663883 + }, + "geometry": [ + { "lat": 56.1922334, "lon": 10.1663509 }, + { "lat": 56.1921973, "lon": 10.1663883 }, + { "lat": 56.1921805, "lon": 10.1663357 }, + { "lat": 56.1922165, "lon": 10.1662984 }, + { "lat": 56.1922334, "lon": 10.1663509 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1383839028, + "bounds": { + "minlat": 56.1921660, + "minlon": 10.1662527, + "maxlat": 56.1922165, + "maxlon": 10.1663357 + }, + "geometry": [ + { "lat": 56.1922165, "lon": 10.1662984 }, + { "lat": 56.1922017, "lon": 10.1662527 }, + { "lat": 56.1921660, "lon": 10.1662910 }, + { "lat": 56.1921805, "lon": 10.1663357 }, + { "lat": 56.1922165, "lon": 10.1662984 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1383839029, + "bounds": { + "minlat": 56.1919356, + "minlon": 10.1723930, + "maxlat": 56.1920067, + "maxlon": 10.1724789 + }, + "geometry": [ + { "lat": 56.1919972, "lon": 10.1723930 }, + { "lat": 56.1920067, "lon": 10.1724373 }, + { "lat": 56.1919452, "lon": 10.1724789 }, + { "lat": 56.1919356, "lon": 10.1724346 }, + { "lat": 56.1919972, "lon": 10.1723930 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1383839030, + "bounds": { + "minlat": 56.1919452, + "minlon": 10.1724373, + "maxlat": 56.1920157, + "maxlon": 10.1725214 + }, + "geometry": [ + { "lat": 56.1920067, "lon": 10.1724373 }, + { "lat": 56.1920157, "lon": 10.1724795 }, + { "lat": 56.1919544, "lon": 10.1725214 }, + { "lat": 56.1919452, "lon": 10.1724789 }, + { "lat": 56.1920067, "lon": 10.1724373 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1383839031, + "bounds": { + "minlat": 56.1919544, + "minlon": 10.1724795, + "maxlat": 56.1920256, + "maxlon": 10.1725679 + }, + "geometry": [ + { "lat": 56.1920157, "lon": 10.1724795 }, + { "lat": 56.1920256, "lon": 10.1725256 }, + { "lat": 56.1919645, "lon": 10.1725679 }, + { "lat": 56.1919544, "lon": 10.1725214 }, + { "lat": 56.1920157, "lon": 10.1724795 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1383839032, + "bounds": { + "minlat": 56.1919645, + "minlon": 10.1725256, + "maxlat": 56.1920349, + "maxlon": 10.1726101 + }, + "geometry": [ + { "lat": 56.1920256, "lon": 10.1725256 }, + { "lat": 56.1920349, "lon": 10.1725688 }, + { "lat": 56.1919736, "lon": 10.1726101 }, + { "lat": 56.1919645, "lon": 10.1725679 }, + { "lat": 56.1920256, "lon": 10.1725256 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1383839033, + "bounds": { + "minlat": 56.1919736, + "minlon": 10.1725688, + "maxlat": 56.1920454, + "maxlon": 10.1726562 + }, + "geometry": [ + { "lat": 56.1920349, "lon": 10.1725688 }, + { "lat": 56.1920454, "lon": 10.1726180 }, + { "lat": 56.1919836, "lon": 10.1726562 }, + { "lat": 56.1919736, "lon": 10.1726101 }, + { "lat": 56.1920349, "lon": 10.1725688 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1383839035, + "bounds": { + "minlat": 56.1905160, + "minlon": 10.1749838, + "maxlat": 56.1905887, + "maxlon": 10.1750893 + }, + "geometry": [ + { "lat": 56.1905887, "lon": 10.1750464 }, + { "lat": 56.1905301, "lon": 10.1750893 }, + { "lat": 56.1905160, "lon": 10.1750231 }, + { "lat": 56.1905748, "lon": 10.1749838 }, + { "lat": 56.1905887, "lon": 10.1750464 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1383839036, + "bounds": { + "minlat": 56.1905026, + "minlon": 10.1749204, + "maxlat": 56.1905748, + "maxlon": 10.1750231 + }, + "geometry": [ + { "lat": 56.1905160, "lon": 10.1750231 }, + { "lat": 56.1905026, "lon": 10.1749612 }, + { "lat": 56.1905616, "lon": 10.1749204 }, + { "lat": 56.1905748, "lon": 10.1749838 }, + { "lat": 56.1905160, "lon": 10.1750231 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1383839037, + "bounds": { + "minlat": 56.1904905, + "minlon": 10.1748645, + "maxlat": 56.1905616, + "maxlon": 10.1749612 + }, + "geometry": [ + { "lat": 56.1905026, "lon": 10.1749612 }, + { "lat": 56.1904905, "lon": 10.1749040 }, + { "lat": 56.1905484, "lon": 10.1748645 }, + { "lat": 56.1905616, "lon": 10.1749204 }, + { "lat": 56.1905026, "lon": 10.1749612 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1383839038, + "bounds": { + "minlat": 56.1888816, + "minlon": 10.1747964, + "maxlat": 56.1889214, + "maxlon": 10.1748746 + }, + "geometry": [ + { "lat": 56.1889110, "lon": 10.1747964 }, + { "lat": 56.1888816, "lon": 10.1748032 }, + { "lat": 56.1888849, "lon": 10.1748746 }, + { "lat": 56.1889214, "lon": 10.1748639 }, + { "lat": 56.1889110, "lon": 10.1747964 } + ], + "tags": { + "amenity": "parking_space", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1383839039, + "bounds": { + "minlat": 56.1888441, + "minlon": 10.1748032, + "maxlat": 56.1888849, + "maxlon": 10.1748746 + }, + "geometry": [ + { "lat": 56.1888816, "lon": 10.1748032 }, + { "lat": 56.1888462, "lon": 10.1748052 }, + { "lat": 56.1888441, "lon": 10.1748717 }, + { "lat": 56.1888849, "lon": 10.1748746 }, + { "lat": 56.1888816, "lon": 10.1748032 } + ], + "tags": { + "amenity": "parking_space", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1383839040, + "bounds": { + "minlat": 56.1889045, + "minlon": 10.1749832, + "maxlat": 56.1889426, + "maxlon": 10.1750605 + }, + "geometry": [ + { "lat": 56.1889045, "lon": 10.1749891 }, + { "lat": 56.1889089, "lon": 10.1750605 }, + { "lat": 56.1889426, "lon": 10.1750546 }, + { "lat": 56.1889366, "lon": 10.1749832 }, + { "lat": 56.1889045, "lon": 10.1749891 } + ], + "tags": { + "amenity": "parking_space", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1383839041, + "bounds": { + "minlat": 56.1888702, + "minlon": 10.1749891, + "maxlat": 56.1889089, + "maxlon": 10.1750644 + }, + "geometry": [ + { "lat": 56.1889089, "lon": 10.1750605 }, + { "lat": 56.1888740, "lon": 10.1750644 }, + { "lat": 56.1888702, "lon": 10.1749910 }, + { "lat": 56.1889045, "lon": 10.1749891 }, + { "lat": 56.1889089, "lon": 10.1750605 } + ], + "tags": { + "amenity": "parking_space", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1383840748, + "bounds": { + "minlat": 56.1898694, + "minlon": 10.1681678, + "maxlat": 56.1899207, + "maxlon": 10.1682468 + }, + "geometry": [ + { "lat": 56.1899125, "lon": 10.1681678 }, + { "lat": 56.1898694, "lon": 10.1681895 }, + { "lat": 56.1898777, "lon": 10.1682468 }, + { "lat": 56.1899207, "lon": 10.1682244 }, + { "lat": 56.1899125, "lon": 10.1681678 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1383840749, + "bounds": { + "minlat": 56.1898777, + "minlon": 10.1682244, + "maxlat": 56.1899290, + "maxlon": 10.1683040 + }, + "geometry": [ + { "lat": 56.1899207, "lon": 10.1682244 }, + { "lat": 56.1899290, "lon": 10.1682817 }, + { "lat": 56.1898861, "lon": 10.1683040 }, + { "lat": 56.1898777, "lon": 10.1682468 }, + { "lat": 56.1899207, "lon": 10.1682244 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1383840750, + "bounds": { + "minlat": 56.1898861, + "minlon": 10.1682817, + "maxlat": 56.1899368, + "maxlon": 10.1683585 + }, + "geometry": [ + { "lat": 56.1899290, "lon": 10.1682817 }, + { "lat": 56.1899368, "lon": 10.1683359 }, + { "lat": 56.1898940, "lon": 10.1683585 }, + { "lat": 56.1898861, "lon": 10.1683040 }, + { "lat": 56.1899290, "lon": 10.1682817 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1383840751, + "bounds": { + "minlat": 56.1898940, + "minlon": 10.1683359, + "maxlat": 56.1899450, + "maxlon": 10.1684135 + }, + "geometry": [ + { "lat": 56.1899368, "lon": 10.1683359 }, + { "lat": 56.1899450, "lon": 10.1683923 }, + { "lat": 56.1899020, "lon": 10.1684135 }, + { "lat": 56.1898940, "lon": 10.1683585 }, + { "lat": 56.1899368, "lon": 10.1683359 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1383961104, + "bounds": { + "minlat": 56.1942406, + "minlon": 10.1942824, + "maxlat": 56.1942834, + "maxlon": 10.1943771 + }, + "geometry": [ + { "lat": 56.1942406, "lon": 10.1943043 }, + { "lat": 56.1942646, "lon": 10.1942824 }, + { "lat": 56.1942834, "lon": 10.1943568 }, + { "lat": 56.1942587, "lon": 10.1943771 }, + { "lat": 56.1942406, "lon": 10.1943043 } + ], + "tags": { + "amenity": "parking_space", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1383961105, + "bounds": { + "minlat": 56.1942646, + "minlon": 10.1942608, + "maxlat": 56.1943095, + "maxlon": 10.1943568 + }, + "geometry": [ + { "lat": 56.1942646, "lon": 10.1942824 }, + { "lat": 56.1942917, "lon": 10.1942608 }, + { "lat": 56.1943095, "lon": 10.1943355 }, + { "lat": 56.1942834, "lon": 10.1943568 }, + { "lat": 56.1942646, "lon": 10.1942824 } + ], + "tags": { + "amenity": "parking_space", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1384127785, + "bounds": { + "minlat": 56.1586105, + "minlon": 10.1994204, + "maxlat": 56.1586506, + "maxlon": 10.1994671 + }, + "geometry": [ + { "lat": 56.1586147, "lon": 10.1994204 }, + { "lat": 56.1586105, "lon": 10.1994520 }, + { "lat": 56.1586456, "lon": 10.1994671 }, + { "lat": 56.1586506, "lon": 10.1994343 }, + { "lat": 56.1586147, "lon": 10.1994204 } + ], + "tags": { + "amenity": "parking", + "capacity": "1", + "capacity:disabled": "1", + "orientation": "parallel", + "parking": "street_side" + } +}, +{ + "type": "way", + "id": 1384127786, + "bounds": { + "minlat": 56.1588400, + "minlon": 10.1994097, + "maxlat": 56.1589163, + "maxlon": 10.1994608 + }, + "geometry": [ + { "lat": 56.1588400, "lon": 10.1994488 }, + { "lat": 56.1588706, "lon": 10.1994608 }, + { "lat": 56.1589163, "lon": 10.1994236 }, + { "lat": 56.1588861, "lon": 10.1994097 }, + { "lat": 56.1588400, "lon": 10.1994488 } + ], + "tags": { + "access": "permit", + "amenity": "parking", + "capacity": "1", + "capacity:disabled": "1", + "disabled": "designated", + "orientation": "diagonal", + "parking": "street_side" + } +}, +{ + "type": "way", + "id": 1384128171, + "bounds": { + "minlat": 56.1943113, + "minlon": 10.1944455, + "maxlat": 56.1943536, + "maxlon": 10.1945255 + }, + "geometry": [ + { "lat": 56.1943396, "lon": 10.1944455 }, + { "lat": 56.1943536, "lon": 10.1945034 }, + { "lat": 56.1943253, "lon": 10.1945255 }, + { "lat": 56.1943113, "lon": 10.1944676 }, + { "lat": 56.1943396, "lon": 10.1944455 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "2", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1384139202, + "bounds": { + "minlat": 56.1877179, + "minlon": 10.1701647, + "maxlat": 56.1877910, + "maxlon": 10.1703136 + }, + "geometry": [ + { "lat": 56.1877910, "lon": 10.1701647 }, + { "lat": 56.1877589, "lon": 10.1702866 }, + { "lat": 56.1877179, "lon": 10.1703136 }, + { "lat": 56.1877498, "lon": 10.1701941 }, + { "lat": 56.1877910, "lon": 10.1701647 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1384139203, + "bounds": { + "minlat": 56.1876742, + "minlon": 10.1701941, + "maxlat": 56.1877498, + "maxlon": 10.1703425 + }, + "geometry": [ + { "lat": 56.1877179, "lon": 10.1703136 }, + { "lat": 56.1876742, "lon": 10.1703425 }, + { "lat": 56.1877086, "lon": 10.1702236 }, + { "lat": 56.1877498, "lon": 10.1701941 }, + { "lat": 56.1877179, "lon": 10.1703136 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1388077760, + "bounds": { + "minlat": 56.1389781, + "minlon": 10.2118885, + "maxlat": 56.1390839, + "maxlon": 10.2121716 + }, + "geometry": [ + { "lat": 56.1390253, "lon": 10.2121716 }, + { "lat": 56.1389781, "lon": 10.2121399 }, + { "lat": 56.1390383, "lon": 10.2118885 }, + { "lat": 56.1390839, "lon": 10.2119252 }, + { "lat": 56.1390253, "lon": 10.2121716 } + ], + "tags": { + "access": "yes", + "amenity": "parking_space", + "capacity": "5", + "parking_space": "disabled", + "surface": "grass_paver" + } +}, +{ + "type": "way", + "id": 1395039553, + "bounds": { + "minlat": 56.2251747, + "minlon": 10.2380858, + "maxlat": 56.2252381, + "maxlon": 10.2381646 + }, + "geometry": [ + { "lat": 56.2252381, "lon": 10.2381015 }, + { "lat": 56.2251800, "lon": 10.2380858 }, + { "lat": 56.2251747, "lon": 10.2381479 }, + { "lat": 56.2252328, "lon": 10.2381646 }, + { "lat": 56.2252381, "lon": 10.2381015 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1395039554, + "bounds": { + "minlat": 56.2251704, + "minlon": 10.2381479, + "maxlat": 56.2252328, + "maxlon": 10.2382215 + }, + "geometry": [ + { "lat": 56.2252328, "lon": 10.2381646 }, + { "lat": 56.2252281, "lon": 10.2382215 }, + { "lat": 56.2251704, "lon": 10.2382054 }, + { "lat": 56.2251747, "lon": 10.2381479 }, + { "lat": 56.2252328, "lon": 10.2381646 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1395040245, + "bounds": { + "minlat": 56.2248497, + "minlon": 10.2374550, + "maxlat": 56.2249052, + "maxlon": 10.2375327 + }, + "geometry": [ + { "lat": 56.2249052, "lon": 10.2374701 }, + { "lat": 56.2248990, "lon": 10.2375327 }, + { "lat": 56.2248497, "lon": 10.2375176 }, + { "lat": 56.2248552, "lon": 10.2374550 }, + { "lat": 56.2249052, "lon": 10.2374701 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1395040246, + "bounds": { + "minlat": 56.2248447, + "minlon": 10.2375176, + "maxlat": 56.2248990, + "maxlon": 10.2375849 + }, + "geometry": [ + { "lat": 56.2248990, "lon": 10.2375327 }, + { "lat": 56.2248941, "lon": 10.2375849 }, + { "lat": 56.2248447, "lon": 10.2375698 }, + { "lat": 56.2248497, "lon": 10.2375176 }, + { "lat": 56.2248990, "lon": 10.2375327 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1410177010, + "bounds": { + "minlat": 56.1522957, + "minlon": 10.1994052, + "maxlat": 56.1524176, + "maxlon": 10.1996474 + }, + "geometry": [ + { "lat": 56.1524176, "lon": 10.1994716 }, + { "lat": 56.1523604, "lon": 10.1994052 }, + { "lat": 56.1522957, "lon": 10.1995855 }, + { "lat": 56.1523544, "lon": 10.1996474 }, + { "lat": 56.1524176, "lon": 10.1994716 } + ], + "tags": { + "access": "yes", + "amenity": "parking", + "capacity": "4", + "capacity:disabled": "1", + "fee": "no", + "maxstay": "15 minutes", + "parking": "surface", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 1436931350, + "bounds": { + "minlat": 56.2027690, + "minlon": 10.2346632, + "maxlat": 56.2028173, + "maxlon": 10.2347524 + }, + "geometry": [ + { "lat": 56.2027690, "lon": 10.2347401 }, + { "lat": 56.2028099, "lon": 10.2347524 }, + { "lat": 56.2028173, "lon": 10.2346755 }, + { "lat": 56.2027760, "lon": 10.2346632 }, + { "lat": 56.2027690, "lon": 10.2347401 } + ], + "tags": { + "access": "unknown", + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1441606719, + "bounds": { + "minlat": 56.2034108, + "minlon": 10.2332037, + "maxlat": 56.2035526, + "maxlon": 10.2333203 + }, + "geometry": [ + { "lat": 56.2034108, "lon": 10.2332821 }, + { "lat": 56.2034177, "lon": 10.2332037 }, + { "lat": 56.2035526, "lon": 10.2332419 }, + { "lat": 56.2035457, "lon": 10.2333203 }, + { "lat": 56.2034108, "lon": 10.2332821 } + ], + "tags": { + "access": "permit", + "amenity": "parking", + "capacity:disabled": "6", + "orientation": "perpendicular", + "parking": "street_side", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1441606720, + "bounds": { + "minlat": 56.2035666, + "minlon": 10.2332474, + "maxlat": 56.2037076, + "maxlon": 10.2333628 + }, + "geometry": [ + { "lat": 56.2035666, "lon": 10.2333248 }, + { "lat": 56.2035733, "lon": 10.2332474 }, + { "lat": 56.2037076, "lon": 10.2332854 }, + { "lat": 56.2037008, "lon": 10.2333628 }, + { "lat": 56.2035666, "lon": 10.2333248 } + ], + "tags": { + "access": "permit", + "amenity": "parking", + "capacity:disabled": "6", + "orientation": "perpendicular", + "parking": "street_side", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1441606724, + "bounds": { + "minlat": 56.2037471, + "minlon": 10.2338572, + "maxlat": 56.2038241, + "maxlon": 10.2339491 + }, + "geometry": [ + { "lat": 56.2037524, "lon": 10.2339491 }, + { "lat": 56.2037797, "lon": 10.2339430 }, + { "lat": 56.2038241, "lon": 10.2339331 }, + { "lat": 56.2038189, "lon": 10.2338572 }, + { "lat": 56.2037471, "lon": 10.2338732 }, + { "lat": 56.2037524, "lon": 10.2339491 } + ], + "tags": { + "access": "permit", + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1441606730, + "bounds": { + "minlat": 56.2039420, + "minlon": 10.2346238, + "maxlat": 56.2040185, + "maxlon": 10.2347232 + }, + "geometry": [ + { "lat": 56.2039420, "lon": 10.2346409 }, + { "lat": 56.2039480, "lon": 10.2347232 }, + { "lat": 56.2039918, "lon": 10.2347130 }, + { "lat": 56.2040185, "lon": 10.2347065 }, + { "lat": 56.2040123, "lon": 10.2346238 }, + { "lat": 56.2039420, "lon": 10.2346409 } + ], + "tags": { + "access": "permit", + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1448374382, + "bounds": { + "minlat": 56.1867287, + "minlon": 10.2284430, + "maxlat": 56.1867918, + "maxlon": 10.2285799 + }, + "geometry": [ + { "lat": 56.1867918, "lon": 10.2284631 }, + { "lat": 56.1867396, "lon": 10.2284430 }, + { "lat": 56.1867287, "lon": 10.2285601 }, + { "lat": 56.1867821, "lon": 10.2285799 }, + { "lat": 56.1867918, "lon": 10.2284631 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "2", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1451025164, + "bounds": { + "minlat": 56.1648564, + "minlon": 10.2054590, + "maxlat": 56.1649260, + "maxlon": 10.2056354 + }, + "geometry": [ + { "lat": 56.1648957, "lon": 10.2054590 }, + { "lat": 56.1649260, "lon": 10.2056100 }, + { "lat": 56.1648866, "lon": 10.2056354 }, + { "lat": 56.1648564, "lon": 10.2054844 }, + { "lat": 56.1648957, "lon": 10.2054590 } + ], + "tags": { + "amenity": "parking", + "capacity": "4", + "capacity:disabled": "4", + "parking": "street_side" + } +}, +{ + "type": "way", + "id": 1460294668, + "bounds": { + "minlat": 56.2157373, + "minlon": 10.1480403, + "maxlat": 56.2159185, + "maxlon": 10.1484208 + }, + "geometry": [ + { "lat": 56.2158710, "lon": 10.1480403 }, + { "lat": 56.2158495, "lon": 10.1480909 }, + { "lat": 56.2158360, "lon": 10.1481227 }, + { "lat": 56.2158165, "lon": 10.1481688 }, + { "lat": 56.2157980, "lon": 10.1482125 }, + { "lat": 56.2157790, "lon": 10.1482573 }, + { "lat": 56.2157600, "lon": 10.1483020 }, + { "lat": 56.2157373, "lon": 10.1483557 }, + { "lat": 56.2157849, "lon": 10.1484208 }, + { "lat": 56.2158085, "lon": 10.1483651 }, + { "lat": 56.2158274, "lon": 10.1483204 }, + { "lat": 56.2158467, "lon": 10.1482749 }, + { "lat": 56.2158653, "lon": 10.1482311 }, + { "lat": 56.2158833, "lon": 10.1481885 }, + { "lat": 56.2158969, "lon": 10.1481564 }, + { "lat": 56.2159185, "lon": 10.1481054 }, + { "lat": 56.2158710, "lon": 10.1480403 } + ], + "tags": { + "amenity": "parking", + "capacity": "6", + "capacity:disabled": "6", + "parking": "street_side" + } +}, +{ + "type": "way", + "id": 1461492996, + "bounds": { + "minlat": 56.0464362, + "minlon": 10.1909576, + "maxlat": 56.0464877, + "maxlon": 10.1912190 + }, + "geometry": [ + { "lat": 56.0464643, "lon": 10.1909576 }, + { "lat": 56.0464877, "lon": 10.1909649 }, + { "lat": 56.0464595, "lon": 10.1912190 }, + { "lat": 56.0464362, "lon": 10.1912117 }, + { "lat": 56.0464643, "lon": 10.1909576 } + ], + "tags": { + "amenity": "parking", + "capacity": "2", + "capacity:disabled": "2", + "parking": "street_side" + } +}, +{ + "type": "way", + "id": 1466175463, + "bounds": { + "minlat": 56.2330080, + "minlon": 10.2949029, + "maxlat": 56.2331005, + "maxlon": 10.2953628 + }, + "geometry": [ + { "lat": 56.2330539, "lon": 10.2953628 }, + { "lat": 56.2330080, "lon": 10.2953428 }, + { "lat": 56.2330528, "lon": 10.2949029 }, + { "lat": 56.2331005, "lon": 10.2949212 }, + { "lat": 56.2330539, "lon": 10.2953628 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "7", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1491396585, + "bounds": { + "minlat": 56.2158495, + "minlon": 10.1480403, + "maxlat": 56.2159185, + "maxlon": 10.1481564 + }, + "geometry": [ + { "lat": 56.2158495, "lon": 10.1480909 }, + { "lat": 56.2158969, "lon": 10.1481564 }, + { "lat": 56.2159185, "lon": 10.1481054 }, + { "lat": 56.2158710, "lon": 10.1480403 }, + { "lat": 56.2158495, "lon": 10.1480909 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1491396586, + "bounds": { + "minlat": 56.2158165, + "minlon": 10.1481227, + "maxlat": 56.2158833, + "maxlon": 10.1482311 + }, + "geometry": [ + { "lat": 56.2158360, "lon": 10.1481227 }, + { "lat": 56.2158833, "lon": 10.1481885 }, + { "lat": 56.2158653, "lon": 10.1482311 }, + { "lat": 56.2158165, "lon": 10.1481688 }, + { "lat": 56.2158360, "lon": 10.1481227 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1491396587, + "bounds": { + "minlat": 56.2157980, + "minlon": 10.1481688, + "maxlat": 56.2158653, + "maxlon": 10.1482749 + }, + "geometry": [ + { "lat": 56.2158653, "lon": 10.1482311 }, + { "lat": 56.2158467, "lon": 10.1482749 }, + { "lat": 56.2157980, "lon": 10.1482125 }, + { "lat": 56.2158165, "lon": 10.1481688 }, + { "lat": 56.2158653, "lon": 10.1482311 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1491396588, + "bounds": { + "minlat": 56.2157790, + "minlon": 10.1482125, + "maxlat": 56.2158467, + "maxlon": 10.1483204 + }, + "geometry": [ + { "lat": 56.2158467, "lon": 10.1482749 }, + { "lat": 56.2158274, "lon": 10.1483204 }, + { "lat": 56.2157790, "lon": 10.1482573 }, + { "lat": 56.2157980, "lon": 10.1482125 }, + { "lat": 56.2158467, "lon": 10.1482749 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1491396589, + "bounds": { + "minlat": 56.2157600, + "minlon": 10.1482573, + "maxlat": 56.2158274, + "maxlon": 10.1483651 + }, + "geometry": [ + { "lat": 56.2158274, "lon": 10.1483204 }, + { "lat": 56.2158085, "lon": 10.1483651 }, + { "lat": 56.2157600, "lon": 10.1483020 }, + { "lat": 56.2157790, "lon": 10.1482573 }, + { "lat": 56.2158274, "lon": 10.1483204 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1491396590, + "bounds": { + "minlat": 56.2157373, + "minlon": 10.1483020, + "maxlat": 56.2158085, + "maxlon": 10.1484208 + }, + "geometry": [ + { "lat": 56.2158085, "lon": 10.1483651 }, + { "lat": 56.2157849, "lon": 10.1484208 }, + { "lat": 56.2157373, "lon": 10.1483557 }, + { "lat": 56.2157600, "lon": 10.1483020 }, + { "lat": 56.2158085, "lon": 10.1483651 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1491414516, + "bounds": { + "minlat": 56.1592042, + "minlon": 10.2152008, + "maxlat": 56.1593052, + "maxlon": 10.2153660 + }, + "geometry": [ + { "lat": 56.1592254, "lon": 10.2153660 }, + { "lat": 56.1593052, "lon": 10.2152472 }, + { "lat": 56.1592849, "lon": 10.2152008 }, + { "lat": 56.1592042, "lon": 10.2153196 }, + { "lat": 56.1592254, "lon": 10.2153660 } + ], + "tags": { + "amenity": "parking", + "capacity": "3", + "capacity:disabled": "3", + "parking": "street_side" + } +}, +{ + "type": "way", + "id": 1491452027, + "bounds": { + "minlat": 56.0464820, + "minlon": 10.1915097, + "maxlat": 56.0465314, + "maxlon": 10.1915780 + }, + "geometry": [ + { "lat": 56.0464874, "lon": 10.1915097 }, + { "lat": 56.0465314, "lon": 10.1915231 }, + { "lat": 56.0465259, "lon": 10.1915780 }, + { "lat": 56.0464820, "lon": 10.1915632 }, + { "lat": 56.0464874, "lon": 10.1915097 } + ], + "tags": { + "amenity": "parking", + "capacity": "1", + "capacity:disabled": "1", + "parking": "street_side" + } +}, +{ + "type": "way", + "id": 1491452308, + "bounds": { + "minlat": 56.0464011, + "minlon": 10.1928204, + "maxlat": 56.0464349, + "maxlon": 10.1929034 + }, + "geometry": [ + { "lat": 56.0464011, "lon": 10.1928999 }, + { "lat": 56.0464039, "lon": 10.1928204 }, + { "lat": 56.0464349, "lon": 10.1928239 }, + { "lat": 56.0464321, "lon": 10.1929034 }, + { "lat": 56.0464011, "lon": 10.1928999 } + ], + "tags": { + "amenity": "parking", + "capacity": "1", + "capacity:disabled": "1" + } +}, +{ + "type": "way", + "id": 1491453512, + "bounds": { + "minlat": 56.1452102, + "minlon": 10.1864693, + "maxlat": 56.1452552, + "maxlon": 10.1865503 + }, + "geometry": [ + { "lat": 56.1452552, "lon": 10.1864981 }, + { "lat": 56.1452265, "lon": 10.1865503 }, + { "lat": 56.1452102, "lon": 10.1865215 }, + { "lat": 56.1452389, "lon": 10.1864693 }, + { "lat": 56.1452552, "lon": 10.1864981 } + ], + "tags": { + "amenity": "parking", + "capacity": "1", + "capacity:disabled": "1", + "parking": "street_side" + } +}, +{ + "type": "way", + "id": 1491596163, + "bounds": { + "minlat": 56.1553051, + "minlon": 10.1957967, + "maxlat": 56.1553576, + "maxlon": 10.1958807 + }, + "geometry": [ + { "lat": 56.1553187, "lon": 10.1957967 }, + { "lat": 56.1553051, "lon": 10.1958311 }, + { "lat": 56.1553439, "lon": 10.1958807 }, + { "lat": 56.1553576, "lon": 10.1958463 }, + { "lat": 56.1553187, "lon": 10.1957967 } + ], + "tags": { + "amenity": "parking", + "capacity": "1", + "capacity:disabled": "1", + "orientation": "parallel", + "parking": "street_side" + } +}, +{ + "type": "way", + "id": 1491599502, + "bounds": { + "minlat": 56.1597305, + "minlon": 10.1998091, + "maxlat": 56.1597717, + "maxlon": 10.1998741 + }, + "geometry": [ + { "lat": 56.1597305, "lon": 10.1998459 }, + { "lat": 56.1597410, "lon": 10.1998741 }, + { "lat": 56.1597717, "lon": 10.1998374 }, + { "lat": 56.1597612, "lon": 10.1998091 }, + { "lat": 56.1597305, "lon": 10.1998459 } + ], + "tags": { + "amenity": "parking", + "capacity": "1", + "capacity:disabled": "1", + "orientation": "diagonal", + "parking": "street_side" + } +}, +{ + "type": "way", + "id": 1491604094, + "bounds": { + "minlat": 56.1599322, + "minlon": 10.1999227, + "maxlat": 56.1599880, + "maxlon": 10.1999737 + }, + "geometry": [ + { "lat": 56.1599880, "lon": 10.1999320 }, + { "lat": 56.1599638, "lon": 10.1999227 }, + { "lat": 56.1599322, "lon": 10.1999631 }, + { "lat": 56.1599545, "lon": 10.1999737 }, + { "lat": 56.1599880, "lon": 10.1999320 } + ], + "tags": { + "amenity": "parking", + "capacity": "1", + "capacity:disabled": "1", + "orientation": "diagonal", + "parking": "street_side" + } +}, +{ + "type": "way", + "id": 1491604455, + "bounds": { + "minlat": 56.1599155, + "minlon": 10.1985551, + "maxlat": 56.1599656, + "maxlon": 10.1986424 + }, + "geometry": [ + { "lat": 56.1599155, "lon": 10.1985551 }, + { "lat": 56.1599229, "lon": 10.1986045 }, + { "lat": 56.1599656, "lon": 10.1986424 }, + { "lat": 56.1599572, "lon": 10.1985936 }, + { "lat": 56.1599155, "lon": 10.1985551 } + ], + "tags": { + "amenity": "parking", + "capacity": "1", + "capacity:disabled": "1", + "orientation": "diagonal", + "parking": "street_side" + } +}, +{ + "type": "way", + "id": 1491606396, + "bounds": { + "minlat": 56.1294140, + "minlon": 10.2111430, + "maxlat": 56.1294917, + "maxlon": 10.2112837 + }, + "geometry": [ + { "lat": 56.1294696, "lon": 10.2111781 }, + { "lat": 56.1294917, "lon": 10.2112295 }, + { "lat": 56.1294568, "lon": 10.2112837 }, + { "lat": 56.1294352, "lon": 10.2112520 }, + { "lat": 56.1294140, "lon": 10.2112209 }, + { "lat": 56.1294392, "lon": 10.2111430 }, + { "lat": 56.1294696, "lon": 10.2111781 } + ], + "tags": { + "amenity": "parking", + "capacity": "2", + "capacity:disabled": "2", + "parking": "street_side" + } +}, +{ + "type": "way", + "id": 1491606397, + "bounds": { + "minlat": 56.1294140, + "minlon": 10.2111430, + "maxlat": 56.1294696, + "maxlon": 10.2112520 + }, + "geometry": [ + { "lat": 56.1294140, "lon": 10.2112209 }, + { "lat": 56.1294392, "lon": 10.2111430 }, + { "lat": 56.1294696, "lon": 10.2111781 }, + { "lat": 56.1294352, "lon": 10.2112520 }, + { "lat": 56.1294140, "lon": 10.2112209 } + ], + "tags": { + "amenity": "parking_space", + "fee": "no", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1491606398, + "bounds": { + "minlat": 56.1294352, + "minlon": 10.2111781, + "maxlat": 56.1294917, + "maxlon": 10.2112837 + }, + "geometry": [ + { "lat": 56.1294352, "lon": 10.2112520 }, + { "lat": 56.1294568, "lon": 10.2112837 }, + { "lat": 56.1294917, "lon": 10.2112295 }, + { "lat": 56.1294696, "lon": 10.2111781 }, + { "lat": 56.1294352, "lon": 10.2112520 } + ], + "tags": { + "amenity": "parking_space", + "fee": "no", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1491637922, + "bounds": { + "minlat": 56.1578876, + "minlon": 10.1949108, + "maxlat": 56.1579499, + "maxlon": 10.1949748 + }, + "geometry": [ + { "lat": 56.1578876, "lon": 10.1949447 }, + { "lat": 56.1578932, "lon": 10.1949748 }, + { "lat": 56.1579499, "lon": 10.1949408 }, + { "lat": 56.1579444, "lon": 10.1949108 }, + { "lat": 56.1578876, "lon": 10.1949447 } + ], + "tags": { + "amenity": "parking", + "capacity": "1", + "capacity:disabled": "1", + "orientation": "parallel", + "parking": "street_side" + } +}, +{ + "type": "way", + "id": 1491642228, + "bounds": { + "minlat": 56.1604379, + "minlon": 10.2000826, + "maxlat": 56.1604880, + "maxlon": 10.2001595 + }, + "geometry": [ + { "lat": 56.1604379, "lon": 10.2001292 }, + { "lat": 56.1604492, "lon": 10.2001595 }, + { "lat": 56.1604880, "lon": 10.2001129 }, + { "lat": 56.1604767, "lon": 10.2000826 }, + { "lat": 56.1604379, "lon": 10.2001292 } + ], + "tags": { + "amenity": "parking", + "capacity": "1", + "capacity:disabled": "1", + "orientation": "parallel", + "parking": "street_side", + "wheelchair": "yes" + } +}, +{ + "type": "way", + "id": 1493115632, + "bounds": { + "minlat": 56.1611948, + "minlon": 10.2049041, + "maxlat": 56.1612266, + "maxlon": 10.2049993 + }, + "geometry": [ + { "lat": 56.1612266, "lon": 10.2049906 }, + { "lat": 56.1612089, "lon": 10.2049993 }, + { "lat": 56.1611948, "lon": 10.2049131 }, + { "lat": 56.1612123, "lon": 10.2049041 }, + { "lat": 56.1612266, "lon": 10.2049906 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1493115633, + "bounds": { + "minlat": 56.1612089, + "minlon": 10.2049906, + "maxlat": 56.1612390, + "maxlon": 10.2050754 + }, + "geometry": [ + { "lat": 56.1612266, "lon": 10.2049906 }, + { "lat": 56.1612390, "lon": 10.2050661 }, + { "lat": 56.1612214, "lon": 10.2050754 }, + { "lat": 56.1612089, "lon": 10.2049993 }, + { "lat": 56.1612266, "lon": 10.2049906 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1493115634, + "bounds": { + "minlat": 56.1612214, + "minlon": 10.2050661, + "maxlat": 56.1612551, + "maxlon": 10.2051726 + }, + "geometry": [ + { "lat": 56.1612390, "lon": 10.2050661 }, + { "lat": 56.1612551, "lon": 10.2051636 }, + { "lat": 56.1612373, "lon": 10.2051726 }, + { "lat": 56.1612214, "lon": 10.2050754 }, + { "lat": 56.1612390, "lon": 10.2050661 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1493115635, + "bounds": { + "minlat": 56.1612850, + "minlon": 10.2054917, + "maxlat": 56.1613247, + "maxlon": 10.2056143 + }, + "geometry": [ + { "lat": 56.1613067, "lon": 10.2054917 }, + { "lat": 56.1612850, "lon": 10.2055031 }, + { "lat": 56.1613030, "lon": 10.2056143 }, + { "lat": 56.1613247, "lon": 10.2056029 }, + { "lat": 56.1613067, "lon": 10.2054917 } + ], + "tags": { + "amenity": "parking", + "capacity": "1", + "capacity:disabled": "1", + "disabled": "designated", + "parking": "street_side" + } +}, +{ + "type": "way", + "id": 1493115636, + "bounds": { + "minlat": 56.1628815, + "minlon": 10.2094909, + "maxlat": 56.1629215, + "maxlon": 10.2095767 + }, + "geometry": [ + { "lat": 56.1629215, "lon": 10.2095080 }, + { "lat": 56.1629074, "lon": 10.2094909 }, + { "lat": 56.1628815, "lon": 10.2095596 }, + { "lat": 56.1628955, "lon": 10.2095767 }, + { "lat": 56.1629215, "lon": 10.2095080 } + ], + "tags": { + "amenity": "parking", + "capacity": "1", + "capacity:disabled": "1", + "disabled": "designated" + } +}, +{ + "type": "way", + "id": 1493120906, + "bounds": { + "minlat": 56.1642761, + "minlon": 10.2179322, + "maxlat": 56.1643395, + "maxlon": 10.2180788 + }, + "geometry": [ + { "lat": 56.1642761, "lon": 10.2180543 }, + { "lat": 56.1643106, "lon": 10.2179322 }, + { "lat": 56.1643395, "lon": 10.2179573 }, + { "lat": 56.1643054, "lon": 10.2180788 }, + { "lat": 56.1642761, "lon": 10.2180543 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1493120907, + "bounds": { + "minlat": 56.1651003, + "minlon": 10.2186760, + "maxlat": 56.1651623, + "maxlon": 10.2188056 + }, + "geometry": [ + { "lat": 56.1651371, "lon": 10.2188056 }, + { "lat": 56.1651623, "lon": 10.2187093 }, + { "lat": 56.1651249, "lon": 10.2186760 }, + { "lat": 56.1651003, "lon": 10.2187730 }, + { "lat": 56.1651371, "lon": 10.2188056 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1493120908, + "bounds": { + "minlat": 56.1734101, + "minlon": 10.2186863, + "maxlat": 56.1734447, + "maxlon": 10.2188107 + }, + "geometry": [ + { "lat": 56.1734447, "lon": 10.2186945 }, + { "lat": 56.1734293, "lon": 10.2188107 }, + { "lat": 56.1734101, "lon": 10.2188026 }, + { "lat": 56.1734255, "lon": 10.2186863 }, + { "lat": 56.1734447, "lon": 10.2186945 } + ], + "tags": { + "amenity": "parking", + "capacity": "1", + "capacity:disabled": "1", + "disabled": "designated", + "orientation": "parallel", + "parking": "street_side" + } +}, +{ + "type": "way", + "id": 1493120909, + "bounds": { + "minlat": 56.1733826, + "minlon": 10.2189378, + "maxlat": 56.1734116, + "maxlon": 10.2190388 + }, + "geometry": [ + { "lat": 56.1734116, "lon": 10.2189449 }, + { "lat": 56.1733990, "lon": 10.2190388 }, + { "lat": 56.1733826, "lon": 10.2190317 }, + { "lat": 56.1733953, "lon": 10.2189378 }, + { "lat": 56.1734116, "lon": 10.2189449 } + ], + "tags": { + "amenity": "parking", + "capacity": "1", + "capacity:disabled": "1", + "disabled": "designated", + "orientation": "parallel", + "parking": "street_side" + } +}, +{ + "type": "way", + "id": 1493120910, + "bounds": { + "minlat": 56.1743782, + "minlon": 10.2178945, + "maxlat": 56.1744253, + "maxlon": 10.2181069 + }, + "geometry": [ + { "lat": 56.1744253, "lon": 10.2179029 }, + { "lat": 56.1744125, "lon": 10.2179957 }, + { "lat": 56.1743971, "lon": 10.2181069 }, + { "lat": 56.1743782, "lon": 10.2180985 }, + { "lat": 56.1743937, "lon": 10.2179861 }, + { "lat": 56.1744063, "lon": 10.2178945 }, + { "lat": 56.1744253, "lon": 10.2179029 } + ], + "tags": { + "amenity": "parking", + "capacity": "2", + "capacity:disabled": "2", + "disabled": "designated", + "orientation": "parallel", + "parking": "street_side" + } +}, +{ + "type": "way", + "id": 1493120911, + "bounds": { + "minlat": 56.1743455, + "minlon": 10.2182483, + "maxlat": 56.1743800, + "maxlon": 10.2183727 + }, + "geometry": [ + { "lat": 56.1743800, "lon": 10.2182565 }, + { "lat": 56.1743647, "lon": 10.2183727 }, + { "lat": 56.1743455, "lon": 10.2183646 }, + { "lat": 56.1743608, "lon": 10.2182483 }, + { "lat": 56.1743800, "lon": 10.2182565 } + ], + "tags": { + "amenity": "parking", + "capacity": "1", + "capacity:disabled": "1", + "disabled": "designated", + "orientation": "parallel", + "parking": "street_side" + } +}, +{ + "type": "way", + "id": 1493120912, + "bounds": { + "minlat": 56.1724363, + "minlon": 10.2143406, + "maxlat": 56.1725046, + "maxlon": 10.2143885 + }, + "geometry": [ + { "lat": 56.1725046, "lon": 10.2143758 }, + { "lat": 56.1724384, "lon": 10.2143885 }, + { "lat": 56.1724363, "lon": 10.2143534 }, + { "lat": 56.1725025, "lon": 10.2143406 }, + { "lat": 56.1725046, "lon": 10.2143758 } + ], + "tags": { + "amenity": "parking", + "capacity": "1", + "capacity:disabled": "1", + "disabled": "designated", + "orientation": "parallel", + "parking": "street_side" + } +}, +{ + "type": "way", + "id": 1493120913, + "bounds": { + "minlat": 56.1719911, + "minlon": 10.2136260, + "maxlat": 56.1720209, + "maxlon": 10.2137289 + }, + "geometry": [ + { "lat": 56.1720209, "lon": 10.2136330 }, + { "lat": 56.1720096, "lon": 10.2137289 }, + { "lat": 56.1719911, "lon": 10.2137218 }, + { "lat": 56.1720024, "lon": 10.2136260 }, + { "lat": 56.1720209, "lon": 10.2136330 } + ], + "tags": { + "amenity": "parking", + "capacity": "1", + "capacity:disabled": "1", + "disabled": "designated", + "orientation": "parallel", + "parking": "street_side" + } +}, +{ + "type": "way", + "id": 1493120914, + "bounds": { + "minlat": 56.1673982, + "minlon": 10.2057807, + "maxlat": 56.1674472, + "maxlon": 10.2058429 + }, + "geometry": [ + { "lat": 56.1674472, "lon": 10.2058123 }, + { "lat": 56.1674053, "lon": 10.2058429 }, + { "lat": 56.1673982, "lon": 10.2058113 }, + { "lat": 56.1674401, "lon": 10.2057807 }, + { "lat": 56.1674472, "lon": 10.2058123 } + ], + "tags": { + "amenity": "parking", + "capacity": "1", + "capacity:disabled": "1", + "disabled": "designated", + "orientation": "parallel", + "parking": "street_side" + } +}, +{ + "type": "way", + "id": 1493120915, + "bounds": { + "minlat": 56.1744450, + "minlon": 10.2017645, + "maxlat": 56.1744786, + "maxlon": 10.2018669 + }, + "geometry": [ + { "lat": 56.1744786, "lon": 10.2017743 }, + { "lat": 56.1744626, "lon": 10.2018669 }, + { "lat": 56.1744450, "lon": 10.2018571 }, + { "lat": 56.1744609, "lon": 10.2017645 }, + { "lat": 56.1744786, "lon": 10.2017743 } + ], + "tags": { + "amenity": "parking", + "capacity": "1", + "capacity:disabled": "1", + "disabled": "designated", + "orientation": "parallel", + "parking": "street_side" + } +}, +{ + "type": "way", + "id": 1493120916, + "bounds": { + "minlat": 56.1754831, + "minlon": 10.1956599, + "maxlat": 56.1755186, + "maxlon": 10.1957448 + }, + "geometry": [ + { "lat": 56.1755186, "lon": 10.1956727 }, + { "lat": 56.1755062, "lon": 10.1957448 }, + { "lat": 56.1754831, "lon": 10.1957320 }, + { "lat": 56.1754955, "lon": 10.1956599 }, + { "lat": 56.1755186, "lon": 10.1956727 } + ], + "tags": { + "amenity": "parking", + "capacity": "1", + "capacity:disabled": "1", + "disabled": "designated", + "orientation": "parallel", + "parking": "street_side" + } +}, +{ + "type": "way", + "id": 1493120917, + "bounds": { + "minlat": 56.1484989, + "minlon": 10.2057704, + "maxlat": 56.1485197, + "maxlon": 10.2058602 + }, + "geometry": [ + { "lat": 56.1485197, "lon": 10.2057718 }, + { "lat": 56.1485177, "lon": 10.2058602 }, + { "lat": 56.1484989, "lon": 10.2058589 }, + { "lat": 56.1485009, "lon": 10.2057704 }, + { "lat": 56.1485197, "lon": 10.2057718 } + ], + "tags": { + "amenity": "parking", + "capacity": "1", + "capacity:disabled": "1", + "disabled": "designated", + "orientation": "parallel", + "parking": "street_side" + } +}, +{ + "type": "way", + "id": 1493120918, + "bounds": { + "minlat": 56.1478335, + "minlon": 10.1998834, + "maxlat": 56.1478803, + "maxlon": 10.1999141 + }, + "geometry": [ + { "lat": 56.1478801, "lon": 10.1999141 }, + { "lat": 56.1478335, "lon": 10.1999128 }, + { "lat": 56.1478337, "lon": 10.1998834 }, + { "lat": 56.1478803, "lon": 10.1998846 }, + { "lat": 56.1478801, "lon": 10.1999141 } + ], + "tags": { + "amenity": "parking", + "capacity": "1", + "capacity:disabled": "1", + "disabled": "designated", + "orientation": "parallel", + "parking": "street_side" + } +}, +{ + "type": "way", + "id": 1493357507, + "bounds": { + "minlat": 56.1424514, + "minlon": 10.2056784, + "maxlat": 56.1425188, + "maxlon": 10.2057270 + }, + "geometry": [ + { "lat": 56.1425164, "lon": 10.2056784 }, + { "lat": 56.1424514, "lon": 10.2056988 }, + { "lat": 56.1424533, "lon": 10.2057270 }, + { "lat": 56.1425188, "lon": 10.2057101 }, + { "lat": 56.1425164, "lon": 10.2056784 } + ], + "tags": { + "amenity": "parking", + "capacity": "1", + "capacity:disabled": "1", + "disabled": "designated", + "orientation": "parallel", + "parking": "street_side" + } +}, +{ + "type": "way", + "id": 1493357960, + "bounds": { + "minlat": 56.1418138, + "minlon": 10.2061722, + "maxlat": 56.1418488, + "maxlon": 10.2062590 + }, + "geometry": [ + { "lat": 56.1418340, "lon": 10.2061722 }, + { "lat": 56.1418138, "lon": 10.2061879 }, + { "lat": 56.1418288, "lon": 10.2062590 }, + { "lat": 56.1418488, "lon": 10.2062455 }, + { "lat": 56.1418340, "lon": 10.2061722 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "disabled": "designated", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1493358224, + "bounds": { + "minlat": 56.1412975, + "minlon": 10.2069056, + "maxlat": 56.1413187, + "maxlon": 10.2070080 + }, + "geometry": [ + { "lat": 56.1412975, "lon": 10.2070058 }, + { "lat": 56.1413147, "lon": 10.2070080 }, + { "lat": 56.1413187, "lon": 10.2069078 }, + { "lat": 56.1413015, "lon": 10.2069056 }, + { "lat": 56.1412975, "lon": 10.2070058 } + ], + "tags": { + "amenity": "parking", + "capacity": "1", + "capacity:disabled": "1", + "disabled": "designated", + "orientation": "parallel", + "parking": "street_side" + } +}, +{ + "type": "way", + "id": 1493358461, + "bounds": { + "minlat": 56.1434628, + "minlon": 10.2064465, + "maxlat": 56.1435157, + "maxlon": 10.2065244 + }, + "geometry": [ + { "lat": 56.1434737, "lon": 10.2064465 }, + { "lat": 56.1434628, "lon": 10.2064782 }, + { "lat": 56.1435049, "lon": 10.2065244 }, + { "lat": 56.1435157, "lon": 10.2064927 }, + { "lat": 56.1434737, "lon": 10.2064465 } + ], + "tags": { + "amenity": "parking", + "capacity": "1", + "capacity:disabled": "1", + "disabled": "designated", + "parking": "street_side" + } +}, +{ + "type": "way", + "id": 1493358784, + "bounds": { + "minlat": 56.1440417, + "minlon": 10.2068291, + "maxlat": 56.1440762, + "maxlon": 10.2068763 + }, + "geometry": [ + { "lat": 56.1440468, "lon": 10.2068291 }, + { "lat": 56.1440417, "lon": 10.2068616 }, + { "lat": 56.1440711, "lon": 10.2068763 }, + { "lat": 56.1440762, "lon": 10.2068438 }, + { "lat": 56.1440468, "lon": 10.2068291 } + ], + "tags": { + "amenity": "parking", + "capacity": "1", + "capacity:disabled": "1", + "disabled": "designated", + "orientation": "parallel", + "parking": "street_side" + } +}, +{ + "type": "way", + "id": 1493360446, + "bounds": { + "minlat": 56.0610221, + "minlon": 10.2114041, + "maxlat": 56.0610778, + "maxlon": 10.2114736 + }, + "geometry": [ + { "lat": 56.0610261, "lon": 10.2114736 }, + { "lat": 56.0610221, "lon": 10.2114155 }, + { "lat": 56.0610738, "lon": 10.2114041 }, + { "lat": 56.0610778, "lon": 10.2114621 }, + { "lat": 56.0610261, "lon": 10.2114736 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1493360447, + "bounds": { + "minlat": 56.0610187, + "minlon": 10.2113506, + "maxlat": 56.0610738, + "maxlon": 10.2114155 + }, + "geometry": [ + { "lat": 56.0610221, "lon": 10.2114155 }, + { "lat": 56.0610187, "lon": 10.2113623 }, + { "lat": 56.0610699, "lon": 10.2113506 }, + { "lat": 56.0610738, "lon": 10.2114041 }, + { "lat": 56.0610221, "lon": 10.2114155 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1493362902, + "bounds": { + "minlat": 56.1395124, + "minlon": 10.1927677, + "maxlat": 56.1395716, + "maxlon": 10.1928112 + }, + "geometry": [ + { "lat": 56.1395698, "lon": 10.1927677 }, + { "lat": 56.1395124, "lon": 10.1927778 }, + { "lat": 56.1395143, "lon": 10.1928112 }, + { "lat": 56.1395716, "lon": 10.1928011 }, + { "lat": 56.1395698, "lon": 10.1927677 } + ], + "tags": { + "amenity": "parking", + "capacity": "1", + "capacity:disabled": "1", + "disabled": "designated", + "orientation": "parallel", + "parking": "street_side" + } +}, +{ + "type": "way", + "id": 1493363453, + "bounds": { + "minlat": 56.1405569, + "minlon": 10.1924197, + "maxlat": 56.1406089, + "maxlon": 10.1924949 + }, + "geometry": [ + { "lat": 56.1405983, "lon": 10.1924197 }, + { "lat": 56.1406089, "lon": 10.1924567 }, + { "lat": 56.1405676, "lon": 10.1924949 }, + { "lat": 56.1405569, "lon": 10.1924578 }, + { "lat": 56.1405983, "lon": 10.1924197 } + ], + "tags": { + "amenity": "parking", + "capacity": "1", + "capacity:disabled": "1", + "disabled": "designated", + "orientation": "parallel", + "parking": "street_side" + } +}, +{ + "type": "way", + "id": 1493363649, + "bounds": { + "minlat": 56.1403183, + "minlon": 10.1924755, + "maxlat": 56.1403647, + "maxlon": 10.1925244 + }, + "geometry": [ + { "lat": 56.1403604, "lon": 10.1924755 }, + { "lat": 56.1403647, "lon": 10.1925026 }, + { "lat": 56.1403227, "lon": 10.1925244 }, + { "lat": 56.1403183, "lon": 10.1924973 }, + { "lat": 56.1403604, "lon": 10.1924755 } + ], + "tags": { + "amenity": "parking", + "capacity": "1", + "capacity:disabled": "1", + "disabled": "designated", + "orientation": "parallel", + "parking": "street_side" + } +}, +{ + "type": "way", + "id": 1493363930, + "bounds": { + "minlat": 56.1420576, + "minlon": 10.1930653, + "maxlat": 56.1421570, + "maxlon": 10.1931594 + }, + "geometry": [ + { "lat": 56.1421570, "lon": 10.1930653 }, + { "lat": 56.1421201, "lon": 10.1930733 }, + { "lat": 56.1420891, "lon": 10.1930800 }, + { "lat": 56.1420576, "lon": 10.1931594 }, + { "lat": 56.1420901, "lon": 10.1931518 }, + { "lat": 56.1421278, "lon": 10.1931430 }, + { "lat": 56.1421570, "lon": 10.1930653 } + ], + "tags": { + "amenity": "parking", + "capacity": "2", + "capacity:disabled": "2", + "parking": "street_side" + } +}, +{ + "type": "way", + "id": 1493363931, + "bounds": { + "minlat": 56.1420901, + "minlon": 10.1930653, + "maxlat": 56.1421570, + "maxlon": 10.1931518 + }, + "geometry": [ + { "lat": 56.1421570, "lon": 10.1930653 }, + { "lat": 56.1421278, "lon": 10.1931430 }, + { "lat": 56.1420901, "lon": 10.1931518 }, + { "lat": 56.1421201, "lon": 10.1930733 }, + { "lat": 56.1421570, "lon": 10.1930653 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1493363932, + "bounds": { + "minlat": 56.1420576, + "minlon": 10.1930733, + "maxlat": 56.1421201, + "maxlon": 10.1931594 + }, + "geometry": [ + { "lat": 56.1420901, "lon": 10.1931518 }, + { "lat": 56.1420576, "lon": 10.1931594 }, + { "lat": 56.1420891, "lon": 10.1930800 }, + { "lat": 56.1421201, "lon": 10.1930733 }, + { "lat": 56.1420901, "lon": 10.1931518 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1493363973, + "bounds": { + "minlat": 56.1425271, + "minlon": 10.1930056, + "maxlat": 56.1425778, + "maxlon": 10.1930528 + }, + "geometry": [ + { "lat": 56.1425757, "lon": 10.1930056 }, + { "lat": 56.1425778, "lon": 10.1930443 }, + { "lat": 56.1425292, "lon": 10.1930528 }, + { "lat": 56.1425271, "lon": 10.1930141 }, + { "lat": 56.1425757, "lon": 10.1930056 } + ], + "tags": { + "amenity": "parking", + "capacity": "1", + "capacity:disabled": "1", + "disabled": "designated", + "orientation": "parallel", + "parking": "street_side" + } +}, +{ + "type": "way", + "id": 1493391697, + "bounds": { + "minlat": 56.1150383, + "minlon": 10.1917067, + "maxlat": 56.1150574, + "maxlon": 10.1917872 + }, + "geometry": [ + { "lat": 56.1150383, "lon": 10.1917862 }, + { "lat": 56.1150561, "lon": 10.1917872 }, + { "lat": 56.1150574, "lon": 10.1917076 }, + { "lat": 56.1150397, "lon": 10.1917067 }, + { "lat": 56.1150383, "lon": 10.1917862 } + ], + "tags": { + "amenity": "parking", + "capacity": "1", + "capacity:disabled": "1", + "disabled": "designated", + "orientation": "parallel", + "parking": "street_side" + } +}, +{ + "type": "way", + "id": 1493391847, + "bounds": { + "minlat": 56.1175062, + "minlon": 10.1948910, + "maxlat": 56.1175555, + "maxlon": 10.1949971 + }, + "geometry": [ + { "lat": 56.1175062, "lon": 10.1949777 }, + { "lat": 56.1175440, "lon": 10.1949971 }, + { "lat": 56.1175555, "lon": 10.1949068 }, + { "lat": 56.1175182, "lon": 10.1948910 }, + { "lat": 56.1175062, "lon": 10.1949777 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1493392001, + "bounds": { + "minlat": 56.1200264, + "minlon": 10.1812053, + "maxlat": 56.1200835, + "maxlon": 10.1812519 + }, + "geometry": [ + { "lat": 56.1200835, "lon": 10.1812494 }, + { "lat": 56.1200828, "lon": 10.1812053 }, + { "lat": 56.1200264, "lon": 10.1812076 }, + { "lat": 56.1200270, "lon": 10.1812519 }, + { "lat": 56.1200835, "lon": 10.1812494 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1493392305, + "bounds": { + "minlat": 56.1208831, + "minlon": 10.1779799, + "maxlat": 56.1209134, + "maxlon": 10.1780706 + }, + "geometry": [ + { "lat": 56.1208831, "lon": 10.1779817 }, + { "lat": 56.1208855, "lon": 10.1780706 }, + { "lat": 56.1209134, "lon": 10.1780694 }, + { "lat": 56.1209114, "lon": 10.1779799 }, + { "lat": 56.1208831, "lon": 10.1779817 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1493392828, + "bounds": { + "minlat": 56.1176667, + "minlon": 10.1736299, + "maxlat": 56.1176907, + "maxlon": 10.1737133 + }, + "geometry": [ + { "lat": 56.1176690, "lon": 10.1737133 }, + { "lat": 56.1176667, "lon": 10.1736317 }, + { "lat": 56.1176892, "lon": 10.1736299 }, + { "lat": 56.1176907, "lon": 10.1737127 }, + { "lat": 56.1176690, "lon": 10.1737133 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1493394992, + "bounds": { + "minlat": 56.1174513, + "minlon": 10.1729956, + "maxlat": 56.1174897, + "maxlon": 10.1730889 + }, + "geometry": [ + { "lat": 56.1174513, "lon": 10.1729981 }, + { "lat": 56.1174877, "lon": 10.1729956 }, + { "lat": 56.1174897, "lon": 10.1730863 }, + { "lat": 56.1174533, "lon": 10.1730889 }, + { "lat": 56.1174513, "lon": 10.1729981 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1493395332, + "bounds": { + "minlat": 56.1157057, + "minlon": 10.1768678, + "maxlat": 56.1157452, + "maxlon": 10.1769522 + }, + "geometry": [ + { "lat": 56.1157447, "lon": 10.1769236 }, + { "lat": 56.1157057, "lon": 10.1769522 }, + { "lat": 56.1157061, "lon": 10.1768941 }, + { "lat": 56.1157452, "lon": 10.1768678 }, + { "lat": 56.1157447, "lon": 10.1769236 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1493395333, + "bounds": { + "minlat": 56.1157041, + "minlon": 10.1771068, + "maxlat": 56.1157430, + "maxlon": 10.1771705 + }, + "geometry": [ + { "lat": 56.1157430, "lon": 10.1771068 }, + { "lat": 56.1157043, "lon": 10.1771371 }, + { "lat": 56.1157041, "lon": 10.1771705 }, + { "lat": 56.1157427, "lon": 10.1771409 }, + { "lat": 56.1157430, "lon": 10.1771068 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1493395425, + "bounds": { + "minlat": 56.1297055, + "minlon": 10.1659957, + "maxlat": 56.1297500, + "maxlon": 10.1660837 + }, + "geometry": [ + { "lat": 56.1297350, "lon": 10.1659957 }, + { "lat": 56.1297500, "lon": 10.1660171 }, + { "lat": 56.1297205, "lon": 10.1660837 }, + { "lat": 56.1297055, "lon": 10.1660624 }, + { "lat": 56.1297350, "lon": 10.1659957 } + ], + "tags": { + "amenity": "parking", + "capacity": "1", + "capacity:disabled": "1", + "disabled": "designated", + "orientation": "parallel", + "parking": "street_side" + } +}, +{ + "type": "way", + "id": 1493401107, + "bounds": { + "minlat": 56.1497679, + "minlon": 10.1356752, + "maxlat": 56.1498051, + "maxlon": 10.1357579 + }, + "geometry": [ + { "lat": 56.1497688, "lon": 10.1356974 }, + { "lat": 56.1497679, "lon": 10.1357579 }, + { "lat": 56.1498050, "lon": 10.1357579 }, + { "lat": 56.1498051, "lon": 10.1356752 }, + { "lat": 56.1497688, "lon": 10.1356974 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1493401234, + "bounds": { + "minlat": 56.1614576, + "minlon": 10.1337738, + "maxlat": 56.1615142, + "maxlon": 10.1338183 + }, + "geometry": [ + { "lat": 56.1615118, "lon": 10.1337738 }, + { "lat": 56.1615142, "lon": 10.1338043 }, + { "lat": 56.1614601, "lon": 10.1338183 }, + { "lat": 56.1614576, "lon": 10.1337877 }, + { "lat": 56.1615118, "lon": 10.1337738 } + ], + "tags": { + "amenity": "parking", + "capacity": "1", + "capacity:disabled": "1", + "disabled": "designated", + "parking": "street_side" + } +}, +{ + "type": "way", + "id": 1493401383, + "bounds": { + "minlat": 56.1494112, + "minlon": 10.1574419, + "maxlat": 56.1494664, + "maxlon": 10.1575232 + }, + "geometry": [ + { "lat": 56.1494112, "lon": 10.1574865 }, + { "lat": 56.1494229, "lon": 10.1575232 }, + { "lat": 56.1494664, "lon": 10.1574787 }, + { "lat": 56.1494547, "lon": 10.1574419 }, + { "lat": 56.1494112, "lon": 10.1574865 } + ], + "tags": { + "amenity": "parking", + "capacity": "1", + "capacity:disabled": "1", + "disabled": "designated", + "orientation": "parallel", + "parking": "street_side" + } +}, +{ + "type": "way", + "id": 1493401838, + "bounds": { + "minlat": 56.1484156, + "minlon": 10.1585573, + "maxlat": 56.1485096, + "maxlon": 10.1586837 + }, + "geometry": [ + { "lat": 56.1484991, "lon": 10.1585573 }, + { "lat": 56.1484555, "lon": 10.1586083 }, + { "lat": 56.1484156, "lon": 10.1586549 }, + { "lat": 56.1484261, "lon": 10.1586837 }, + { "lat": 56.1484662, "lon": 10.1586368 }, + { "lat": 56.1485096, "lon": 10.1585861 }, + { "lat": 56.1484991, "lon": 10.1585573 } + ], + "tags": { + "amenity": "parking", + "capacity": "2", + "capacity:disabled": "2", + "disabled": "designated", + "orientation": "parallel", + "parking": "street_side" + } +}, +{ + "type": "way", + "id": 1493401839, + "bounds": { + "minlat": 56.1484555, + "minlon": 10.1585573, + "maxlat": 56.1485096, + "maxlon": 10.1586368 + }, + "geometry": [ + { "lat": 56.1484555, "lon": 10.1586083 }, + { "lat": 56.1484662, "lon": 10.1586368 }, + { "lat": 56.1485096, "lon": 10.1585861 }, + { "lat": 56.1484991, "lon": 10.1585573 }, + { "lat": 56.1484555, "lon": 10.1586083 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1493401840, + "bounds": { + "minlat": 56.1484156, + "minlon": 10.1586083, + "maxlat": 56.1484662, + "maxlon": 10.1586837 + }, + "geometry": [ + { "lat": 56.1484555, "lon": 10.1586083 }, + { "lat": 56.1484156, "lon": 10.1586549 }, + { "lat": 56.1484261, "lon": 10.1586837 }, + { "lat": 56.1484662, "lon": 10.1586368 }, + { "lat": 56.1484555, "lon": 10.1586083 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1493401921, + "bounds": { + "minlat": 56.1480620, + "minlon": 10.1632112, + "maxlat": 56.1481193, + "maxlon": 10.1632825 + }, + "geometry": [ + { "lat": 56.1480697, "lon": 10.1632825 }, + { "lat": 56.1480620, "lon": 10.1632533 }, + { "lat": 56.1481116, "lon": 10.1632112 }, + { "lat": 56.1481193, "lon": 10.1632404 }, + { "lat": 56.1480697, "lon": 10.1632825 } + ], + "tags": { + "amenity": "parking", + "capacity": "1", + "capacity:disabled": "1", + "disabled": "designated", + "orientation": "parallel", + "parking": "street_side" + } +}, +{ + "type": "way", + "id": 1493404934, + "bounds": { + "minlat": 56.1697517, + "minlon": 10.2177061, + "maxlat": 56.1697760, + "maxlon": 10.2177662 + }, + "geometry": [ + { "lat": 56.1697596, "lon": 10.2177061 }, + { "lat": 56.1697760, "lon": 10.2177141 }, + { "lat": 56.1697681, "lon": 10.2177662 }, + { "lat": 56.1697517, "lon": 10.2177582 }, + { "lat": 56.1697596, "lon": 10.2177061 } + ], + "tags": { + "amenity": "parking", + "capacity": "1", + "capacity:disabled": "1", + "disabled": "designated", + "orientation": "parallel", + "parking": "street_side" + } +}, +{ + "type": "way", + "id": 1493432244, + "bounds": { + "minlat": 56.1619201, + "minlon": 10.2128741, + "maxlat": 56.1619704, + "maxlon": 10.2129416 + }, + "geometry": [ + { "lat": 56.1619201, "lon": 10.2128862 }, + { "lat": 56.1619677, "lon": 10.2128741 }, + { "lat": 56.1619704, "lon": 10.2129295 }, + { "lat": 56.1619239, "lon": 10.2129416 }, + { "lat": 56.1619201, "lon": 10.2128862 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1493432768, + "bounds": { + "minlat": 56.1621421, + "minlon": 10.2135693, + "maxlat": 56.1622101, + "maxlon": 10.2136775 + }, + "geometry": [ + { "lat": 56.1621549, "lon": 10.2135693 }, + { "lat": 56.1621421, "lon": 10.2135959 }, + { "lat": 56.1621967, "lon": 10.2136775 }, + { "lat": 56.1622101, "lon": 10.2136527 }, + { "lat": 56.1621549, "lon": 10.2135693 } + ], + "tags": { + "amenity": "parking", + "capacity": "1", + "capacity:disabled": "1", + "disabled": "designated", + "orientation": "parallel", + "parking": "street_side" + } +}, +{ + "type": "way", + "id": 1493432890, + "bounds": { + "minlat": 56.1625395, + "minlon": 10.2145779, + "maxlat": 56.1625792, + "maxlon": 10.2146641 + }, + "geometry": [ + { "lat": 56.1625792, "lon": 10.2145943 }, + { "lat": 56.1625656, "lon": 10.2145779 }, + { "lat": 56.1625395, "lon": 10.2146478 }, + { "lat": 56.1625531, "lon": 10.2146641 }, + { "lat": 56.1625792, "lon": 10.2145943 } + ], + "tags": { + "amenity": "parking", + "capacity": "1", + "capacity:disabled": "1", + "disabled": "designated", + "orientation": "parallel", + "parking": "street_side" + } +}, +{ + "type": "way", + "id": 1493432994, + "bounds": { + "minlat": 56.1618750, + "minlon": 10.2154013, + "maxlat": 56.1619372, + "maxlon": 10.2154695 + }, + "geometry": [ + { "lat": 56.1619307, "lon": 10.2154695 }, + { "lat": 56.1619372, "lon": 10.2154339 }, + { "lat": 56.1618815, "lon": 10.2154013 }, + { "lat": 56.1618750, "lon": 10.2154369 }, + { "lat": 56.1619307, "lon": 10.2154695 } + ], + "tags": { + "amenity": "parking", + "capacity": "1", + "capacity:disabled": "1", + "disabled": "designated", + "orientation": "parallel", + "parking": "street_side" + } +}, +{ + "type": "way", + "id": 1493434278, + "bounds": { + "minlat": 56.1612867, + "minlon": 10.2150374, + "maxlat": 56.1614641, + "maxlon": 10.2151721 + }, + "geometry": [ + { "lat": 56.1614641, "lon": 10.2151444 }, + { "lat": 56.1614588, "lon": 10.2151721 }, + { "lat": 56.1614038, "lon": 10.2151379 }, + { "lat": 56.1613467, "lon": 10.2151023 }, + { "lat": 56.1612867, "lon": 10.2150650 }, + { "lat": 56.1612920, "lon": 10.2150374 }, + { "lat": 56.1613521, "lon": 10.2150748 }, + { "lat": 56.1614092, "lon": 10.2151103 }, + { "lat": 56.1614641, "lon": 10.2151444 } + ], + "tags": { + "amenity": "parking", + "capacity": "3", + "capacity:disabled": "3", + "orientation": "parallel", + "parking": "street_side" + } +}, +{ + "type": "way", + "id": 1493434279, + "bounds": { + "minlat": 56.1614038, + "minlon": 10.2151103, + "maxlat": 56.1614641, + "maxlon": 10.2151721 + }, + "geometry": [ + { "lat": 56.1614588, "lon": 10.2151721 }, + { "lat": 56.1614038, "lon": 10.2151379 }, + { "lat": 56.1614092, "lon": 10.2151103 }, + { "lat": 56.1614641, "lon": 10.2151444 }, + { "lat": 56.1614588, "lon": 10.2151721 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1493434280, + "bounds": { + "minlat": 56.1613467, + "minlon": 10.2150748, + "maxlat": 56.1614092, + "maxlon": 10.2151379 + }, + "geometry": [ + { "lat": 56.1614038, "lon": 10.2151379 }, + { "lat": 56.1613467, "lon": 10.2151023 }, + { "lat": 56.1613521, "lon": 10.2150748 }, + { "lat": 56.1614092, "lon": 10.2151103 }, + { "lat": 56.1614038, "lon": 10.2151379 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1493434281, + "bounds": { + "minlat": 56.1612867, + "minlon": 10.2150374, + "maxlat": 56.1613521, + "maxlon": 10.2151023 + }, + "geometry": [ + { "lat": 56.1613467, "lon": 10.2151023 }, + { "lat": 56.1612867, "lon": 10.2150650 }, + { "lat": 56.1612920, "lon": 10.2150374 }, + { "lat": 56.1613521, "lon": 10.2150748 }, + { "lat": 56.1613467, "lon": 10.2151023 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1493434900, + "bounds": { + "minlat": 56.1581876, + "minlon": 10.2128458, + "maxlat": 56.1582505, + "maxlon": 10.2130480 + }, + "geometry": [ + { "lat": 56.1581876, "lon": 10.2130327 }, + { "lat": 56.1582091, "lon": 10.2130480 }, + { "lat": 56.1582302, "lon": 10.2129525 }, + { "lat": 56.1582505, "lon": 10.2128611 }, + { "lat": 56.1582290, "lon": 10.2128458 }, + { "lat": 56.1582089, "lon": 10.2129368 }, + { "lat": 56.1581876, "lon": 10.2130327 } + ], + "tags": { + "amenity": "parking", + "capacity": "2", + "capacity:disabled": "2", + "parking": "street_side" + } +}, +{ + "type": "way", + "id": 1493434901, + "bounds": { + "minlat": 56.1581876, + "minlon": 10.2129368, + "maxlat": 56.1582302, + "maxlon": 10.2130480 + }, + "geometry": [ + { "lat": 56.1581876, "lon": 10.2130327 }, + { "lat": 56.1582089, "lon": 10.2129368 }, + { "lat": 56.1582302, "lon": 10.2129525 }, + { "lat": 56.1582091, "lon": 10.2130480 }, + { "lat": 56.1581876, "lon": 10.2130327 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1493434902, + "bounds": { + "minlat": 56.1582089, + "minlon": 10.2128458, + "maxlat": 56.1582505, + "maxlon": 10.2129525 + }, + "geometry": [ + { "lat": 56.1582089, "lon": 10.2129368 }, + { "lat": 56.1582290, "lon": 10.2128458 }, + { "lat": 56.1582505, "lon": 10.2128611 }, + { "lat": 56.1582302, "lon": 10.2129525 }, + { "lat": 56.1582089, "lon": 10.2129368 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1493435644, + "bounds": { + "minlat": 56.1601515, + "minlon": 10.2115693, + "maxlat": 56.1602380, + "maxlon": 10.2116966 + }, + "geometry": [ + { "lat": 56.1601644, "lon": 10.2115693 }, + { "lat": 56.1601515, "lon": 10.2116020 }, + { "lat": 56.1601883, "lon": 10.2116508 }, + { "lat": 56.1602254, "lon": 10.2116966 }, + { "lat": 56.1602380, "lon": 10.2116636 }, + { "lat": 56.1602010, "lon": 10.2116177 }, + { "lat": 56.1601644, "lon": 10.2115693 } + ], + "tags": { + "amenity": "parking", + "capacity": "2", + "capacity:disabled": "2", + "orientation": "parallel", + "parking": "street_side" + } +}, +{ + "type": "way", + "id": 1493435645, + "bounds": { + "minlat": 56.1601883, + "minlon": 10.2116177, + "maxlat": 56.1602380, + "maxlon": 10.2116966 + }, + "geometry": [ + { "lat": 56.1602254, "lon": 10.2116966 }, + { "lat": 56.1601883, "lon": 10.2116508 }, + { "lat": 56.1602010, "lon": 10.2116177 }, + { "lat": 56.1602380, "lon": 10.2116636 }, + { "lat": 56.1602254, "lon": 10.2116966 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1493435646, + "bounds": { + "minlat": 56.1601515, + "minlon": 10.2115693, + "maxlat": 56.1602010, + "maxlon": 10.2116508 + }, + "geometry": [ + { "lat": 56.1601883, "lon": 10.2116508 }, + { "lat": 56.1601515, "lon": 10.2116020 }, + { "lat": 56.1601644, "lon": 10.2115693 }, + { "lat": 56.1602010, "lon": 10.2116177 }, + { "lat": 56.1601883, "lon": 10.2116508 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1493436138, + "bounds": { + "minlat": 56.1600610, + "minlon": 10.2114464, + "maxlat": 56.1601095, + "maxlon": 10.2115257 + }, + "geometry": [ + { "lat": 56.1600724, "lon": 10.2114464 }, + { "lat": 56.1600610, "lon": 10.2114718 }, + { "lat": 56.1600981, "lon": 10.2115257 }, + { "lat": 56.1601095, "lon": 10.2115003 }, + { "lat": 56.1600724, "lon": 10.2114464 } + ], + "tags": { + "amenity": "parking", + "capacity": "1", + "capacity:disabled": "1", + "disabled": "designated", + "orientation": "parallel", + "parking": "street_side" + } +}, +{ + "type": "way", + "id": 1493476155, + "bounds": { + "minlat": 56.1689655, + "minlon": 10.1910191, + "maxlat": 56.1690257, + "maxlon": 10.1911882 + }, + "geometry": [ + { "lat": 56.1689785, "lon": 10.1910191 }, + { "lat": 56.1690022, "lon": 10.1910687 }, + { "lat": 56.1690257, "lon": 10.1911176 }, + { "lat": 56.1690107, "lon": 10.1911882 }, + { "lat": 56.1689888, "lon": 10.1911454 }, + { "lat": 56.1689655, "lon": 10.1911002 }, + { "lat": 56.1689785, "lon": 10.1910191 } + ], + "tags": { + "amenity": "parking", + "capacity": "2", + "capacity:disabled": "2", + "disabled": "designated", + "orientation": "perpendicular", + "parking": "street_side" + } +}, +{ + "type": "way", + "id": 1493476156, + "bounds": { + "minlat": 56.1689888, + "minlon": 10.1910687, + "maxlat": 56.1690257, + "maxlon": 10.1911882 + }, + "geometry": [ + { "lat": 56.1690022, "lon": 10.1910687 }, + { "lat": 56.1689888, "lon": 10.1911454 }, + { "lat": 56.1690107, "lon": 10.1911882 }, + { "lat": 56.1690257, "lon": 10.1911176 }, + { "lat": 56.1690022, "lon": 10.1910687 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1493476157, + "bounds": { + "minlat": 56.1689655, + "minlon": 10.1910191, + "maxlat": 56.1690022, + "maxlon": 10.1911454 + }, + "geometry": [ + { "lat": 56.1689785, "lon": 10.1910191 }, + { "lat": 56.1689655, "lon": 10.1911002 }, + { "lat": 56.1689888, "lon": 10.1911454 }, + { "lat": 56.1690022, "lon": 10.1910687 }, + { "lat": 56.1689785, "lon": 10.1910191 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1493476341, + "bounds": { + "minlat": 56.1679420, + "minlon": 10.1891553, + "maxlat": 56.1679900, + "maxlon": 10.1892394 + }, + "geometry": [ + { "lat": 56.1679732, "lon": 10.1892394 }, + { "lat": 56.1679900, "lon": 10.1892058 }, + { "lat": 56.1679588, "lon": 10.1891553 }, + { "lat": 56.1679420, "lon": 10.1891890 }, + { "lat": 56.1679732, "lon": 10.1892394 } + ], + "tags": { + "amenity": "parking", + "capacity": "1", + "capacity:disabled": "1", + "disabled": "designated", + "orientation": "parallel", + "parking": "street_side" + } +}, +{ + "type": "way", + "id": 1493477493, + "bounds": { + "minlat": 56.1686174, + "minlon": 10.1878362, + "maxlat": 56.1686521, + "maxlon": 10.1879555 + }, + "geometry": [ + { "lat": 56.1686174, "lon": 10.1878571 }, + { "lat": 56.1686354, "lon": 10.1879555 }, + { "lat": 56.1686521, "lon": 10.1879338 }, + { "lat": 56.1686344, "lon": 10.1878362 }, + { "lat": 56.1686174, "lon": 10.1878571 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1493477494, + "bounds": { + "minlat": 56.1685999, + "minlon": 10.1878571, + "maxlat": 56.1686354, + "maxlon": 10.1879770 + }, + "geometry": [ + { "lat": 56.1686174, "lon": 10.1878571 }, + { "lat": 56.1685999, "lon": 10.1878786 }, + { "lat": 56.1686190, "lon": 10.1879770 }, + { "lat": 56.1686354, "lon": 10.1879555 }, + { "lat": 56.1686174, "lon": 10.1878571 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1493506589, + "bounds": { + "minlat": 56.1472094, + "minlon": 10.2040236, + "maxlat": 56.1472327, + "maxlon": 10.2041288 + }, + "geometry": [ + { "lat": 56.1472327, "lon": 10.2041258 }, + { "lat": 56.1472148, "lon": 10.2041288 }, + { "lat": 56.1472094, "lon": 10.2040267 }, + { "lat": 56.1472273, "lon": 10.2040236 }, + { "lat": 56.1472327, "lon": 10.2041258 } + ], + "tags": { + "amenity": "parking", + "capacity": "1", + "capacity:disabled": "1", + "disabled": "designated", + "orientation": "parallel", + "parking": "street_side" + } +}, +{ + "type": "way", + "id": 1493506910, + "bounds": { + "minlat": 56.1472189, + "minlon": 10.2042507, + "maxlat": 56.1472403, + "maxlon": 10.2043352 + }, + "geometry": [ + { "lat": 56.1472360, "lon": 10.2042507 }, + { "lat": 56.1472189, "lon": 10.2042536 }, + { "lat": 56.1472231, "lon": 10.2043352 }, + { "lat": 56.1472403, "lon": 10.2043323 }, + { "lat": 56.1472360, "lon": 10.2042507 } + ], + "tags": { + "amenity": "parking", + "capacity": "1", + "capacity:disabled": "1", + "disabled": "designated", + "orientation": "parallel", + "parking": "street_side" + } +}, +{ + "type": "way", + "id": 1493559343, + "bounds": { + "minlat": 56.1535744, + "minlon": 10.2087517, + "maxlat": 56.1536344, + "maxlon": 10.2089564 + }, + "geometry": [ + { "lat": 56.1535928, "lon": 10.2089564 }, + { "lat": 56.1536137, "lon": 10.2088599 }, + { "lat": 56.1536344, "lon": 10.2087645 }, + { "lat": 56.1536161, "lon": 10.2087517 }, + { "lat": 56.1535952, "lon": 10.2088478 }, + { "lat": 56.1535744, "lon": 10.2089435 }, + { "lat": 56.1535928, "lon": 10.2089564 } + ], + "tags": { + "amenity": "parking", + "capacity": "2", + "capacity:disabled": "2", + "orientation": "parallel", + "parking": "street_side" + } +}, +{ + "type": "way", + "id": 1493559344, + "bounds": { + "minlat": 56.1535744, + "minlon": 10.2088478, + "maxlat": 56.1536137, + "maxlon": 10.2089564 + }, + "geometry": [ + { "lat": 56.1535928, "lon": 10.2089564 }, + { "lat": 56.1536137, "lon": 10.2088599 }, + { "lat": 56.1535952, "lon": 10.2088478 }, + { "lat": 56.1535744, "lon": 10.2089435 }, + { "lat": 56.1535928, "lon": 10.2089564 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1493559345, + "bounds": { + "minlat": 56.1535952, + "minlon": 10.2087517, + "maxlat": 56.1536344, + "maxlon": 10.2088599 + }, + "geometry": [ + { "lat": 56.1536137, "lon": 10.2088599 }, + { "lat": 56.1536344, "lon": 10.2087645 }, + { "lat": 56.1536161, "lon": 10.2087517 }, + { "lat": 56.1535952, "lon": 10.2088478 }, + { "lat": 56.1536137, "lon": 10.2088599 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1493559438, + "bounds": { + "minlat": 56.1527892, + "minlon": 10.2085017, + "maxlat": 56.1528804, + "maxlon": 10.2085873 + }, + "geometry": [ + { "lat": 56.1527892, "lon": 10.2085311 }, + { "lat": 56.1527952, "lon": 10.2085017 }, + { "lat": 56.1528375, "lon": 10.2085295 }, + { "lat": 56.1528804, "lon": 10.2085578 }, + { "lat": 56.1528743, "lon": 10.2085873 }, + { "lat": 56.1528310, "lon": 10.2085587 }, + { "lat": 56.1527892, "lon": 10.2085311 } + ], + "tags": { + "amenity": "parking", + "capacity": "2", + "capacity:disabled": "2", + "orientation": "parallel", + "parking": "street_side" + } +}, +{ + "type": "way", + "id": 1493559439, + "bounds": { + "minlat": 56.1528310, + "minlon": 10.2085295, + "maxlat": 56.1528804, + "maxlon": 10.2085873 + }, + "geometry": [ + { "lat": 56.1528743, "lon": 10.2085873 }, + { "lat": 56.1528310, "lon": 10.2085587 }, + { "lat": 56.1528375, "lon": 10.2085295 }, + { "lat": 56.1528804, "lon": 10.2085578 }, + { "lat": 56.1528743, "lon": 10.2085873 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1493559440, + "bounds": { + "minlat": 56.1527892, + "minlon": 10.2085017, + "maxlat": 56.1528375, + "maxlon": 10.2085587 + }, + "geometry": [ + { "lat": 56.1528310, "lon": 10.2085587 }, + { "lat": 56.1527892, "lon": 10.2085311 }, + { "lat": 56.1527952, "lon": 10.2085017 }, + { "lat": 56.1528375, "lon": 10.2085295 }, + { "lat": 56.1528310, "lon": 10.2085587 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1493559767, + "bounds": { + "minlat": 56.1558256, + "minlon": 10.2077139, + "maxlat": 56.1558679, + "maxlon": 10.2077802 + }, + "geometry": [ + { "lat": 56.1558574, "lon": 10.2077139 }, + { "lat": 56.1558256, "lon": 10.2077518 }, + { "lat": 56.1558360, "lon": 10.2077802 }, + { "lat": 56.1558679, "lon": 10.2077422 }, + { "lat": 56.1558574, "lon": 10.2077139 } + ], + "tags": { + "amenity": "parking", + "capacity": "1", + "capacity:disabled": "1", + "disabled": "designated", + "orientation": "parallel", + "parking": "street_side" + } +}, +{ + "type": "way", + "id": 1493559928, + "bounds": { + "minlat": 56.1577554, + "minlon": 10.2076736, + "maxlat": 56.1578466, + "maxlon": 10.2077663 + }, + "geometry": [ + { "lat": 56.1577554, "lon": 10.2077050 }, + { "lat": 56.1577625, "lon": 10.2076736 }, + { "lat": 56.1578052, "lon": 10.2077047 }, + { "lat": 56.1578466, "lon": 10.2077348 }, + { "lat": 56.1578395, "lon": 10.2077663 }, + { "lat": 56.1577985, "lon": 10.2077364 }, + { "lat": 56.1577554, "lon": 10.2077050 } + ], + "tags": { + "amenity": "parking", + "capacity": "2", + "capacity:disabled": "2", + "orientation": "parallel", + "parking": "street_side" + } +}, +{ + "type": "way", + "id": 1493559929, + "bounds": { + "minlat": 56.1577985, + "minlon": 10.2077047, + "maxlat": 56.1578466, + "maxlon": 10.2077663 + }, + "geometry": [ + { "lat": 56.1578395, "lon": 10.2077663 }, + { "lat": 56.1577985, "lon": 10.2077364 }, + { "lat": 56.1578052, "lon": 10.2077047 }, + { "lat": 56.1578466, "lon": 10.2077348 }, + { "lat": 56.1578395, "lon": 10.2077663 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1493559930, + "bounds": { + "minlat": 56.1577554, + "minlon": 10.2076736, + "maxlat": 56.1578052, + "maxlon": 10.2077364 + }, + "geometry": [ + { "lat": 56.1577985, "lon": 10.2077364 }, + { "lat": 56.1577554, "lon": 10.2077050 }, + { "lat": 56.1577625, "lon": 10.2076736 }, + { "lat": 56.1578052, "lon": 10.2077047 }, + { "lat": 56.1577985, "lon": 10.2077364 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1493560794, + "bounds": { + "minlat": 56.1434289, + "minlon": 10.2054937, + "maxlat": 56.1434743, + "maxlon": 10.2055246 + }, + "geometry": [ + { "lat": 56.1434739, "lon": 10.2054937 }, + { "lat": 56.1434743, "lon": 10.2055228 }, + { "lat": 56.1434292, "lon": 10.2055246 }, + { "lat": 56.1434289, "lon": 10.2054955 }, + { "lat": 56.1434739, "lon": 10.2054937 } + ], + "tags": { + "amenity": "parking", + "capacity": "1", + "capacity:disabled": "1", + "disabled": "designated", + "orientation": "parallel", + "parking": "street_side" + } +}, +{ + "type": "way", + "id": 1493560949, + "bounds": { + "minlat": 56.1438697, + "minlon": 10.2054514, + "maxlat": 56.1439231, + "maxlon": 10.2054879 + }, + "geometry": [ + { "lat": 56.1439226, "lon": 10.2054514 }, + { "lat": 56.1438697, "lon": 10.2054539 }, + { "lat": 56.1438702, "lon": 10.2054879 }, + { "lat": 56.1439231, "lon": 10.2054854 }, + { "lat": 56.1439226, "lon": 10.2054514 } + ], + "tags": { + "amenity": "parking", + "capacity": "1", + "capacity:disabled": "1", + "disabled": "designated", + "orientation": "parallel", + "parking": "street_side" + } +}, +{ + "type": "way", + "id": 1493561195, + "bounds": { + "minlat": 56.1440747, + "minlon": 10.2044120, + "maxlat": 56.1441628, + "maxlon": 10.2044535 + }, + "geometry": [ + { "lat": 56.1440747, "lon": 10.2044447 }, + { "lat": 56.1440756, "lon": 10.2044120 }, + { "lat": 56.1441223, "lon": 10.2044163 }, + { "lat": 56.1441628, "lon": 10.2044208 }, + { "lat": 56.1441618, "lon": 10.2044535 }, + { "lat": 56.1441214, "lon": 10.2044490 }, + { "lat": 56.1440747, "lon": 10.2044447 } + ], + "tags": { + "amenity": "parking", + "capacity": "2", + "capacity:disabled": "2", + "orientation": "parallel", + "parking": "street_side", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1493561196, + "bounds": { + "minlat": 56.1441214, + "minlon": 10.2044163, + "maxlat": 56.1441628, + "maxlon": 10.2044535 + }, + "geometry": [ + { "lat": 56.1441628, "lon": 10.2044208 }, + { "lat": 56.1441618, "lon": 10.2044535 }, + { "lat": 56.1441214, "lon": 10.2044490 }, + { "lat": 56.1441223, "lon": 10.2044163 }, + { "lat": 56.1441628, "lon": 10.2044208 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1493561197, + "bounds": { + "minlat": 56.1440747, + "minlon": 10.2044120, + "maxlat": 56.1441223, + "maxlon": 10.2044490 + }, + "geometry": [ + { "lat": 56.1441223, "lon": 10.2044163 }, + { "lat": 56.1441214, "lon": 10.2044490 }, + { "lat": 56.1440747, "lon": 10.2044447 }, + { "lat": 56.1440756, "lon": 10.2044120 }, + { "lat": 56.1441223, "lon": 10.2044163 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1493561534, + "bounds": { + "minlat": 56.1454479, + "minlon": 10.2046077, + "maxlat": 56.1454874, + "maxlon": 10.2047635 + }, + "geometry": [ + { "lat": 56.1454479, "lon": 10.2046798 }, + { "lat": 56.1454800, "lon": 10.2047635 }, + { "lat": 56.1454874, "lon": 10.2046922 }, + { "lat": 56.1454553, "lon": 10.2046077 }, + { "lat": 56.1454479, "lon": 10.2046798 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1493572498, + "bounds": { + "minlat": 56.1540698, + "minlon": 10.2016809, + "maxlat": 56.1541563, + "maxlon": 10.2018019 + }, + "geometry": [ + { "lat": 56.1540698, "lon": 10.2017117 }, + { "lat": 56.1540812, "lon": 10.2016809 }, + { "lat": 56.1541186, "lon": 10.2017258 }, + { "lat": 56.1541563, "lon": 10.2017712 }, + { "lat": 56.1541449, "lon": 10.2018019 }, + { "lat": 56.1541079, "lon": 10.2017575 }, + { "lat": 56.1540698, "lon": 10.2017117 } + ], + "tags": { + "amenity": "parking", + "capacity": "2", + "capacity:disabled": "2", + "orientation": "parallel", + "parking": "street_side" + } +}, +{ + "type": "way", + "id": 1493572499, + "bounds": { + "minlat": 56.1541079, + "minlon": 10.2017258, + "maxlat": 56.1541563, + "maxlon": 10.2018019 + }, + "geometry": [ + { "lat": 56.1541449, "lon": 10.2018019 }, + { "lat": 56.1541079, "lon": 10.2017575 }, + { "lat": 56.1541186, "lon": 10.2017258 }, + { "lat": 56.1541563, "lon": 10.2017712 }, + { "lat": 56.1541449, "lon": 10.2018019 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1493572500, + "bounds": { + "minlat": 56.1540698, + "minlon": 10.2016809, + "maxlat": 56.1541186, + "maxlon": 10.2017575 + }, + "geometry": [ + { "lat": 56.1541186, "lon": 10.2017258 }, + { "lat": 56.1540812, "lon": 10.2016809 }, + { "lat": 56.1540698, "lon": 10.2017117 }, + { "lat": 56.1541079, "lon": 10.2017575 }, + { "lat": 56.1541186, "lon": 10.2017258 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1493573063, + "bounds": { + "minlat": 56.1556438, + "minlon": 10.2033143, + "maxlat": 56.1557299, + "maxlon": 10.2033908 + }, + "geometry": [ + { "lat": 56.1557224, "lon": 10.2033143 }, + { "lat": 56.1556874, "lon": 10.2033480 }, + { "lat": 56.1556438, "lon": 10.2033620 }, + { "lat": 56.1556467, "lon": 10.2033908 }, + { "lat": 56.1556912, "lon": 10.2033765 }, + { "lat": 56.1557299, "lon": 10.2033393 }, + { "lat": 56.1557224, "lon": 10.2033143 } + ], + "tags": { + "amenity": "parking", + "capacity": "2", + "capacity:disabled": "2", + "orientation": "parallel", + "parking": "street_side" + } +}, +{ + "type": "way", + "id": 1493573064, + "bounds": { + "minlat": 56.1556874, + "minlon": 10.2033143, + "maxlat": 56.1557299, + "maxlon": 10.2033765 + }, + "geometry": [ + { "lat": 56.1557224, "lon": 10.2033143 }, + { "lat": 56.1557299, "lon": 10.2033393 }, + { "lat": 56.1556912, "lon": 10.2033765 }, + { "lat": 56.1556874, "lon": 10.2033480 }, + { "lat": 56.1557224, "lon": 10.2033143 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1493573065, + "bounds": { + "minlat": 56.1556438, + "minlon": 10.2033480, + "maxlat": 56.1556912, + "maxlon": 10.2033908 + }, + "geometry": [ + { "lat": 56.1556874, "lon": 10.2033480 }, + { "lat": 56.1556912, "lon": 10.2033765 }, + { "lat": 56.1556467, "lon": 10.2033908 }, + { "lat": 56.1556438, "lon": 10.2033620 }, + { "lat": 56.1556874, "lon": 10.2033480 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1493580522, + "bounds": { + "minlat": 56.1462726, + "minlon": 10.1886005, + "maxlat": 56.1463086, + "maxlon": 10.1886697 + }, + "geometry": [ + { "lat": 56.1462944, "lon": 10.1886697 }, + { "lat": 56.1463086, "lon": 10.1886493 }, + { "lat": 56.1462868, "lon": 10.1886005 }, + { "lat": 56.1462726, "lon": 10.1886210 }, + { "lat": 56.1462944, "lon": 10.1886697 } + ], + "tags": { + "amenity": "parking", + "capacity": "1", + "capacity:disabled": "1", + "disabled": "designated", + "orientation": "parallel", + "parking": "street_side" + } +}, +{ + "type": "way", + "id": 1493580823, + "bounds": { + "minlat": 56.1426154, + "minlon": 10.1888433, + "maxlat": 56.1426639, + "maxlon": 10.1888814 + }, + "geometry": [ + { "lat": 56.1426639, "lon": 10.1888481 }, + { "lat": 56.1426628, "lon": 10.1888814 }, + { "lat": 56.1426154, "lon": 10.1888766 }, + { "lat": 56.1426165, "lon": 10.1888433 }, + { "lat": 56.1426639, "lon": 10.1888481 } + ], + "tags": { + "amenity": "parking", + "capacity": "1", + "capacity:disabled": "1", + "disabled": "designated", + "orientation": "parallel", + "parking": "street_side" + } +}, +{ + "type": "way", + "id": 1493615955, + "bounds": { + "minlat": 56.1449121, + "minlon": 10.1991706, + "maxlat": 56.1449693, + "maxlon": 10.1992425 + }, + "geometry": [ + { "lat": 56.1449164, "lon": 10.1992425 }, + { "lat": 56.1449693, "lon": 10.1992260 }, + { "lat": 56.1449644, "lon": 10.1991706 }, + { "lat": 56.1449121, "lon": 10.1991870 }, + { "lat": 56.1449164, "lon": 10.1992425 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1493615956, + "bounds": { + "minlat": 56.1449078, + "minlon": 10.1991147, + "maxlat": 56.1449644, + "maxlon": 10.1991870 + }, + "geometry": [ + { "lat": 56.1449121, "lon": 10.1991870 }, + { "lat": 56.1449078, "lon": 10.1991307 }, + { "lat": 56.1449594, "lon": 10.1991147 }, + { "lat": 56.1449644, "lon": 10.1991706 }, + { "lat": 56.1449121, "lon": 10.1991870 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1493615957, + "bounds": { + "minlat": 56.1449031, + "minlon": 10.1990595, + "maxlat": 56.1449594, + "maxlon": 10.1991307 + }, + "geometry": [ + { "lat": 56.1449078, "lon": 10.1991307 }, + { "lat": 56.1449031, "lon": 10.1990737 }, + { "lat": 56.1449545, "lon": 10.1990595 }, + { "lat": 56.1449594, "lon": 10.1991147 }, + { "lat": 56.1449078, "lon": 10.1991307 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1493616314, + "bounds": { + "minlat": 56.1454587, + "minlon": 10.1986357, + "maxlat": 56.1454980, + "maxlon": 10.1987178 + }, + "geometry": [ + { "lat": 56.1454904, "lon": 10.1986357 }, + { "lat": 56.1454587, "lon": 10.1986466 }, + { "lat": 56.1454663, "lon": 10.1987178 }, + { "lat": 56.1454980, "lon": 10.1987068 }, + { "lat": 56.1454904, "lon": 10.1986357 } + ], + "tags": { + "amenity": "parking", + "capacity": "1", + "capacity:disabled": "1", + "disabled": "designated", + "orientation": "perpendicular", + "parking": "street_side" + } +}, +{ + "type": "way", + "id": 1493616472, + "bounds": { + "minlat": 56.1456451, + "minlon": 10.1985733, + "maxlat": 56.1456849, + "maxlon": 10.1986574 + }, + "geometry": [ + { "lat": 56.1456451, "lon": 10.1985872 }, + { "lat": 56.1456747, "lon": 10.1985733 }, + { "lat": 56.1456849, "lon": 10.1986435 }, + { "lat": 56.1456553, "lon": 10.1986574 }, + { "lat": 56.1456451, "lon": 10.1985872 } + ], + "tags": { + "amenity": "parking", + "capacity": "1", + "capacity:disabled": "1", + "disabled": "designated", + "orientation": "perpendicular", + "parking": "street_side" + } +}, +{ + "type": "way", + "id": 1493616703, + "bounds": { + "minlat": 56.1470822, + "minlon": 10.2001084, + "maxlat": 56.1471022, + "maxlon": 10.2001985 + }, + "geometry": [ + { "lat": 56.1471004, "lon": 10.2001084 }, + { "lat": 56.1470822, "lon": 10.2001096 }, + { "lat": 56.1470840, "lon": 10.2001985 }, + { "lat": 56.1471022, "lon": 10.2001973 }, + { "lat": 56.1471004, "lon": 10.2001084 } + ], + "tags": { + "amenity": "parking", + "capacity": "1", + "capacity:disabled": "1", + "disabled": "designated", + "orientation": "parallel", + "parking": "street_side" + } +}, +{ + "type": "way", + "id": 1493616958, + "bounds": { + "minlat": 56.1482274, + "minlon": 10.2001526, + "maxlat": 56.1482874, + "maxlon": 10.2002021 + }, + "geometry": [ + { "lat": 56.1482274, "lon": 10.2001633 }, + { "lat": 56.1482296, "lon": 10.2002021 }, + { "lat": 56.1482874, "lon": 10.2001915 }, + { "lat": 56.1482852, "lon": 10.2001526 }, + { "lat": 56.1482274, "lon": 10.2001633 } + ], + "tags": { + "amenity": "parking", + "capacity": "1", + "capacity:disabled": "1", + "disabled": "designated", + "orientation": "parallel", + "parking": "street_side" + } +}, +{ + "type": "way", + "id": 1493617440, + "bounds": { + "minlat": 56.1482724, + "minlon": 10.1989688, + "maxlat": 56.1483251, + "maxlon": 10.1990132 + }, + "geometry": [ + { "lat": 56.1482724, "lon": 10.1989739 }, + { "lat": 56.1482736, "lon": 10.1990132 }, + { "lat": 56.1483251, "lon": 10.1990081 }, + { "lat": 56.1483239, "lon": 10.1989688 }, + { "lat": 56.1482724, "lon": 10.1989739 } + ], + "tags": { + "amenity": "parking", + "capacity": "1", + "capacity:disabled": "1", + "disabled": "designated", + "orientation": "parallel", + "parking": "street_side" + } +}, +{ + "type": "way", + "id": 1493617856, + "bounds": { + "minlat": 56.1514012, + "minlon": 10.1986736, + "maxlat": 56.1514604, + "maxlon": 10.1987965 + }, + "geometry": [ + { "lat": 56.1514288, "lon": 10.1987965 }, + { "lat": 56.1514445, "lon": 10.1987504 }, + { "lat": 56.1514604, "lon": 10.1987039 }, + { "lat": 56.1514328, "lon": 10.1986736 }, + { "lat": 56.1514171, "lon": 10.1987198 }, + { "lat": 56.1514012, "lon": 10.1987662 }, + { "lat": 56.1514288, "lon": 10.1987965 } + ], + "tags": { + "amenity": "parking", + "capacity": "2", + "capacity:disabled": "2", + "orientation": "perpendicular", + "parking": "street_side" + } +}, +{ + "type": "way", + "id": 1493617857, + "bounds": { + "minlat": 56.1514012, + "minlon": 10.1987198, + "maxlat": 56.1514445, + "maxlon": 10.1987965 + }, + "geometry": [ + { "lat": 56.1514288, "lon": 10.1987965 }, + { "lat": 56.1514445, "lon": 10.1987504 }, + { "lat": 56.1514171, "lon": 10.1987198 }, + { "lat": 56.1514012, "lon": 10.1987662 }, + { "lat": 56.1514288, "lon": 10.1987965 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1493617858, + "bounds": { + "minlat": 56.1514171, + "minlon": 10.1986736, + "maxlat": 56.1514604, + "maxlon": 10.1987504 + }, + "geometry": [ + { "lat": 56.1514445, "lon": 10.1987504 }, + { "lat": 56.1514604, "lon": 10.1987039 }, + { "lat": 56.1514328, "lon": 10.1986736 }, + { "lat": 56.1514171, "lon": 10.1987198 }, + { "lat": 56.1514445, "lon": 10.1987504 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1493618477, + "bounds": { + "minlat": 56.1506760, + "minlon": 10.1974811, + "maxlat": 56.1507821, + "maxlon": 10.1976275 + }, + "geometry": [ + { "lat": 56.1506760, "lon": 10.1975164 }, + { "lat": 56.1506890, "lon": 10.1974811 }, + { "lat": 56.1507334, "lon": 10.1975346 }, + { "lat": 56.1507821, "lon": 10.1975921 }, + { "lat": 56.1507692, "lon": 10.1976275 }, + { "lat": 56.1507204, "lon": 10.1975700 }, + { "lat": 56.1506760, "lon": 10.1975164 } + ], + "tags": { + "amenity": "parking", + "capacity": "2", + "capacity:disabled": "2", + "orientation": "parallel", + "parking": "street_side" + } +}, +{ + "type": "way", + "id": 1493618478, + "bounds": { + "minlat": 56.1507204, + "minlon": 10.1975346, + "maxlat": 56.1507821, + "maxlon": 10.1976275 + }, + "geometry": [ + { "lat": 56.1507204, "lon": 10.1975700 }, + { "lat": 56.1507334, "lon": 10.1975346 }, + { "lat": 56.1507821, "lon": 10.1975921 }, + { "lat": 56.1507692, "lon": 10.1976275 }, + { "lat": 56.1507204, "lon": 10.1975700 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1493618479, + "bounds": { + "minlat": 56.1506760, + "minlon": 10.1974811, + "maxlat": 56.1507334, + "maxlon": 10.1975700 + }, + "geometry": [ + { "lat": 56.1507204, "lon": 10.1975700 }, + { "lat": 56.1506760, "lon": 10.1975164 }, + { "lat": 56.1506890, "lon": 10.1974811 }, + { "lat": 56.1507334, "lon": 10.1975346 }, + { "lat": 56.1507204, "lon": 10.1975700 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1493618878, + "bounds": { + "minlat": 56.1505369, + "minlon": 10.1973247, + "maxlat": 56.1505853, + "maxlon": 10.1973999 + }, + "geometry": [ + { "lat": 56.1505369, "lon": 10.1973544 }, + { "lat": 56.1505483, "lon": 10.1973247 }, + { "lat": 56.1505853, "lon": 10.1973702 }, + { "lat": 56.1505739, "lon": 10.1973999 }, + { "lat": 56.1505369, "lon": 10.1973544 } + ], + "tags": { + "amenity": "parking", + "capacity": "1", + "capacity:disabled": "1", + "disabled": "designated", + "orientation": "parallel", + "parking": "street_side" + } +}, +{ + "type": "way", + "id": 1493619320, + "bounds": { + "minlat": 56.1508359, + "minlon": 10.1961279, + "maxlat": 56.1508910, + "maxlon": 10.1961780 + }, + "geometry": [ + { "lat": 56.1508393, "lon": 10.1961279 }, + { "lat": 56.1508359, "lon": 10.1961609 }, + { "lat": 56.1508877, "lon": 10.1961780 }, + { "lat": 56.1508910, "lon": 10.1961450 }, + { "lat": 56.1508393, "lon": 10.1961279 } + ], + "tags": { + "amenity": "parking", + "capacity": "1", + "capacity:disabled": "1", + "disabled": "designated", + "orientation": "parallel", + "parking": "street_side" + } +}, +{ + "type": "way", + "id": 1493619616, + "bounds": { + "minlat": 56.1503139, + "minlon": 10.1958740, + "maxlat": 56.1503858, + "maxlon": 10.1959646 + }, + "geometry": [ + { "lat": 56.1503858, "lon": 10.1959338 }, + { "lat": 56.1503767, "lon": 10.1959646 }, + { "lat": 56.1503139, "lon": 10.1959048 }, + { "lat": 56.1503229, "lon": 10.1958740 }, + { "lat": 56.1503858, "lon": 10.1959338 } + ], + "tags": { + "amenity": "parking", + "capacity": "1", + "capacity:disabled": "1", + "disabled": "designated", + "orientation": "parallel", + "parking": "street_side" + } +}, +{ + "type": "way", + "id": 1493619783, + "bounds": { + "minlat": 56.1501936, + "minlon": 10.1958489, + "maxlat": 56.1502574, + "maxlon": 10.1959337 + }, + "geometry": [ + { "lat": 56.1502034, "lon": 10.1958489 }, + { "lat": 56.1501936, "lon": 10.1958816 }, + { "lat": 56.1502476, "lon": 10.1959337 }, + { "lat": 56.1502574, "lon": 10.1959009 }, + { "lat": 56.1502034, "lon": 10.1958489 } + ], + "tags": { + "amenity": "parking", + "capacity": "1", + "capacity:disabled": "1", + "disabled": "designated", + "orientation": "parallel", + "parking": "street_side" + } +}, +{ + "type": "way", + "id": 1493619952, + "bounds": { + "minlat": 56.1500778, + "minlon": 10.1956303, + "maxlat": 56.1501210, + "maxlon": 10.1957295 + }, + "geometry": [ + { "lat": 56.1500778, "lon": 10.1957119 }, + { "lat": 56.1500947, "lon": 10.1957295 }, + { "lat": 56.1501210, "lon": 10.1956478 }, + { "lat": 56.1501041, "lon": 10.1956303 }, + { "lat": 56.1500778, "lon": 10.1957119 } + ], + "tags": { + "amenity": "parking", + "capacity": "1", + "capacity:disabled": "1", + "disabled": "designated", + "orientation": "parallel", + "parking": "street_side" + } +}, +{ + "type": "way", + "id": 1493635968, + "bounds": { + "minlat": 56.1419583, + "minlon": 10.1955679, + "maxlat": 56.1420262, + "maxlon": 10.1956209 + }, + "geometry": [ + { "lat": 56.1420234, "lon": 10.1955679 }, + { "lat": 56.1420262, "lon": 10.1956051 }, + { "lat": 56.1419611, "lon": 10.1956209 }, + { "lat": 56.1419583, "lon": 10.1955837 }, + { "lat": 56.1420234, "lon": 10.1955679 } + ], + "tags": { + "amenity": "parking", + "capacity": "1", + "capacity:disabled": "1", + "disabled": "designated", + "orientation": "parallel", + "parking": "street_side" + } +}, +{ + "type": "way", + "id": 1493636008, + "bounds": { + "minlat": 56.1418292, + "minlon": 10.1956136, + "maxlat": 56.1418824, + "maxlon": 10.1956541 + }, + "geometry": [ + { "lat": 56.1418292, "lon": 10.1956242 }, + { "lat": 56.1418311, "lon": 10.1956541 }, + { "lat": 56.1418824, "lon": 10.1956435 }, + { "lat": 56.1418805, "lon": 10.1956136 }, + { "lat": 56.1418292, "lon": 10.1956242 } + ], + "tags": { + "amenity": "parking", + "capacity": "1", + "capacity:disabled": "1", + "disabled": "designated", + "orientation": "parallel", + "parking": "street_side" + } +}, +{ + "type": "way", + "id": 1493941134, + "bounds": { + "minlat": 56.1766646, + "minlon": 10.1372432, + "maxlat": 56.1767228, + "maxlon": 10.1373502 + }, + "geometry": [ + { "lat": 56.1766646, "lon": 10.1373201 }, + { "lat": 56.1767050, "lon": 10.1373502 }, + { "lat": 56.1767228, "lon": 10.1372731 }, + { "lat": 56.1766827, "lon": 10.1372432 }, + { "lat": 56.1766646, "lon": 10.1373201 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1493941136, + "bounds": { + "minlat": 56.1763277, + "minlon": 10.1382682, + "maxlat": 56.1763800, + "maxlon": 10.1383496 + }, + "geometry": [ + { "lat": 56.1763277, "lon": 10.1383192 }, + { "lat": 56.1763681, "lon": 10.1383496 }, + { "lat": 56.1763800, "lon": 10.1382986 }, + { "lat": 56.1763396, "lon": 10.1382682 }, + { "lat": 56.1763277, "lon": 10.1383192 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1493941137, + "bounds": { + "minlat": 56.1763396, + "minlon": 10.1382146, + "maxlat": 56.1763926, + "maxlon": 10.1382986 + }, + "geometry": [ + { "lat": 56.1763396, "lon": 10.1382682 }, + { "lat": 56.1763519, "lon": 10.1382146 }, + { "lat": 56.1763926, "lon": 10.1382440 }, + { "lat": 56.1763800, "lon": 10.1382986 }, + { "lat": 56.1763396, "lon": 10.1382682 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1493941138, + "bounds": { + "minlat": 56.1763519, + "minlon": 10.1381621, + "maxlat": 56.1764042, + "maxlon": 10.1382440 + }, + "geometry": [ + { "lat": 56.1763519, "lon": 10.1382146 }, + { "lat": 56.1763639, "lon": 10.1381621 }, + { "lat": 56.1764042, "lon": 10.1381912 }, + { "lat": 56.1763926, "lon": 10.1382440 }, + { "lat": 56.1763519, "lon": 10.1382146 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1493943910, + "bounds": { + "minlat": 56.1770363, + "minlon": 10.1351302, + "maxlat": 56.1773646, + "maxlon": 10.1363811 + }, + "geometry": [ + { "lat": 56.1770363, "lon": 10.1351636 }, + { "lat": 56.1770419, "lon": 10.1354741 }, + { "lat": 56.1770650, "lon": 10.1363184 }, + { "lat": 56.1770666, "lon": 10.1363811 }, + { "lat": 56.1773646, "lon": 10.1363533 }, + { "lat": 56.1773512, "lon": 10.1358961 }, + { "lat": 56.1773499, "lon": 10.1358258 }, + { "lat": 56.1773408, "lon": 10.1355033 }, + { "lat": 56.1773386, "lon": 10.1354412 }, + { "lat": 56.1773309, "lon": 10.1351302 }, + { "lat": 56.1770363, "lon": 10.1351636 } + ], + "tags": { + "amenity": "parking", + "capacity:charging": "22", + "capacity:disabled": "2", + "parking": "surface" + } +}, +{ + "type": "way", + "id": 1493943911, + "bounds": { + "minlat": 56.1772927, + "minlon": 10.1354412, + "maxlat": 56.1773408, + "maxlon": 10.1355069 + }, + "geometry": [ + { "lat": 56.1773386, "lon": 10.1354412 }, + { "lat": 56.1772955, "lon": 10.1354444 }, + { "lat": 56.1772927, "lon": 10.1354447 }, + { "lat": 56.1772942, "lon": 10.1355069 }, + { "lat": 56.1773408, "lon": 10.1355033 }, + { "lat": 56.1773386, "lon": 10.1354412 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1493943912, + "bounds": { + "minlat": 56.1773051, + "minlon": 10.1358258, + "maxlat": 56.1773512, + "maxlon": 10.1358988 + }, + "geometry": [ + { "lat": 56.1773499, "lon": 10.1358258 }, + { "lat": 56.1773474, "lon": 10.1358266 }, + { "lat": 56.1773051, "lon": 10.1358303 }, + { "lat": 56.1773063, "lon": 10.1358988 }, + { "lat": 56.1773512, "lon": 10.1358961 }, + { "lat": 56.1773499, "lon": 10.1358258 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1494065170, + "bounds": { + "minlat": 56.1668269, + "minlon": 10.2064103, + "maxlat": 56.1668730, + "maxlon": 10.2064626 + }, + "geometry": [ + { "lat": 56.1668698, "lon": 10.2064103 }, + { "lat": 56.1668269, "lon": 10.2064209 }, + { "lat": 56.1668301, "lon": 10.2064626 }, + { "lat": 56.1668730, "lon": 10.2064520 }, + { "lat": 56.1668698, "lon": 10.2064103 } + ], + "tags": { + "amenity": "parking", + "capacity": "1", + "capacity:disabled": "1", + "disabled": "designated", + "orientation": "parallel", + "parking": "street_side" + } +}, +{ + "type": "way", + "id": 1494065483, + "bounds": { + "minlat": 56.1637511, + "minlon": 10.2073134, + "maxlat": 56.1637937, + "maxlon": 10.2074046 + }, + "geometry": [ + { "lat": 56.1637511, "lon": 10.2073316 }, + { "lat": 56.1637659, "lon": 10.2074046 }, + { "lat": 56.1637937, "lon": 10.2073868 }, + { "lat": 56.1637786, "lon": 10.2073134 }, + { "lat": 56.1637511, "lon": 10.2073316 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1494190959, + "bounds": { + "minlat": 56.1758515, + "minlon": 10.1376693, + "maxlat": 56.1765082, + "maxlon": 10.1398226 + }, + "geometry": [ + { "lat": 56.1760532, "lon": 10.1376693 }, + { "lat": 56.1764367, "lon": 10.1379509 }, + { "lat": 56.1763943, "lon": 10.1381698 }, + { "lat": 56.1765082, "lon": 10.1382630 }, + { "lat": 56.1764692, "lon": 10.1384326 }, + { "lat": 56.1764232, "lon": 10.1383983 }, + { "lat": 56.1763330, "lon": 10.1388094 }, + { "lat": 56.1763813, "lon": 10.1388453 }, + { "lat": 56.1763047, "lon": 10.1391871 }, + { "lat": 56.1761575, "lon": 10.1398226 }, + { "lat": 56.1758515, "lon": 10.1396038 }, + { "lat": 56.1760532, "lon": 10.1376693 } + ], + "tags": { + "amenity": "parking", + "capacity:disabled": "3", + "parking": "surface", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 1494217514, + "bounds": { + "minlat": 56.1754306, + "minlon": 10.1406416, + "maxlat": 56.1754804, + "maxlon": 10.1407072 + }, + "geometry": [ + { "lat": 56.1754306, "lon": 10.1406921 }, + { "lat": 56.1754359, "lon": 10.1406416 }, + { "lat": 56.1754804, "lon": 10.1406566 }, + { "lat": 56.1754751, "lon": 10.1407072 }, + { "lat": 56.1754306, "lon": 10.1406921 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1494447746, + "bounds": { + "minlat": 56.1470500, + "minlon": 10.1962304, + "maxlat": 56.1470722, + "maxlon": 10.1963184 + }, + "geometry": [ + { "lat": 56.1470524, "lon": 10.1962304 }, + { "lat": 56.1470722, "lon": 10.1962321 }, + { "lat": 56.1470698, "lon": 10.1963184 }, + { "lat": 56.1470500, "lon": 10.1963167 }, + { "lat": 56.1470524, "lon": 10.1962304 } + ], + "tags": { + "amenity": "parking", + "capacity": "1", + "capacity:disabled": "1", + "orientation": "parallel", + "parking": "street_side" + } +}, +{ + "type": "way", + "id": 1494556059, + "bounds": { + "minlat": 56.2063627, + "minlon": 10.1736085, + "maxlat": 56.2064212, + "maxlon": 10.1737050 + }, + "geometry": [ + { "lat": 56.2064056, "lon": 10.1736085 }, + { "lat": 56.2063627, "lon": 10.1736442 }, + { "lat": 56.2063784, "lon": 10.1737050 }, + { "lat": 56.2064212, "lon": 10.1736694 }, + { "lat": 56.2064056, "lon": 10.1736085 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1494556060, + "bounds": { + "minlat": 56.2065133, + "minlon": 10.1734897, + "maxlat": 56.2065707, + "maxlon": 10.1735871 + }, + "geometry": [ + { "lat": 56.2065552, "lon": 10.1734897 }, + { "lat": 56.2065133, "lon": 10.1735221 }, + { "lat": 56.2065288, "lon": 10.1735871 }, + { "lat": 56.2065707, "lon": 10.1735547 }, + { "lat": 56.2065552, "lon": 10.1734897 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1494556061, + "bounds": { + "minlat": 56.2062795, + "minlon": 10.1737275, + "maxlat": 56.2063313, + "maxlon": 10.1738149 + }, + "geometry": [ + { "lat": 56.2063174, "lon": 10.1737275 }, + { "lat": 56.2063313, "lon": 10.1737855 }, + { "lat": 56.2062934, "lon": 10.1738149 }, + { "lat": 56.2062795, "lon": 10.1737568 }, + { "lat": 56.2063174, "lon": 10.1737275 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1494612665, + "bounds": { + "minlat": 56.1580363, + "minlon": 10.1948122, + "maxlat": 56.1581019, + "maxlon": 10.1948804 + }, + "geometry": [ + { "lat": 56.1580363, "lon": 10.1948498 }, + { "lat": 56.1580423, "lon": 10.1948804 }, + { "lat": 56.1581019, "lon": 10.1948429 }, + { "lat": 56.1580959, "lon": 10.1948122 }, + { "lat": 56.1580363, "lon": 10.1948498 } + ], + "tags": { + "amenity": "parking", + "capacity": "1", + "capacity:disabled": "1", + "disabled": "designated", + "parking": "street_side" + } +}, +{ + "type": "way", + "id": 1494613300, + "bounds": { + "minlat": 56.1564297, + "minlon": 10.1999781, + "maxlat": 56.1564707, + "maxlon": 10.2000355 + }, + "geometry": [ + { "lat": 56.1564707, "lon": 10.2000296 }, + { "lat": 56.1564692, "lon": 10.1999781 }, + { "lat": 56.1564297, "lon": 10.1999846 }, + { "lat": 56.1564321, "lon": 10.2000355 }, + { "lat": 56.1564707, "lon": 10.2000296 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1494613733, + "bounds": { + "minlat": 56.1588018, + "minlon": 10.2039142, + "maxlat": 56.1588291, + "maxlon": 10.2039785 + }, + "geometry": [ + { "lat": 56.1588157, "lon": 10.2039785 }, + { "lat": 56.1588291, "lon": 10.2039672 }, + { "lat": 56.1588153, "lon": 10.2039142 }, + { "lat": 56.1588018, "lon": 10.2039254 }, + { "lat": 56.1588157, "lon": 10.2039785 } + ], + "tags": { + "amenity": "parking", + "capacity": "1", + "capacity:disabled": "1", + "disabled": "designated", + "orientation": "parallel", + "parking": "street_side" + } +}, +{ + "type": "way", + "id": 1494613844, + "bounds": { + "minlat": 56.1593656, + "minlon": 10.2042551, + "maxlat": 56.1594134, + "maxlon": 10.2043064 + }, + "geometry": [ + { "lat": 56.1594113, "lon": 10.2042551 }, + { "lat": 56.1593656, "lon": 10.2042622 }, + { "lat": 56.1593677, "lon": 10.2043064 }, + { "lat": 56.1594134, "lon": 10.2042994 }, + { "lat": 56.1594113, "lon": 10.2042551 } + ], + "tags": { + "amenity": "parking", + "capacity": "1", + "capacity:disabled": "1", + "disabled": "designated", + "orientation": "parallel", + "parking": "street_side" + } +}, +{ + "type": "way", + "id": 1494614408, + "bounds": { + "minlat": 56.1628774, + "minlon": 10.2011233, + "maxlat": 56.1629213, + "maxlon": 10.2011913 + }, + "geometry": [ + { "lat": 56.1628774, "lon": 10.2011563 }, + { "lat": 56.1628882, "lon": 10.2011913 }, + { "lat": 56.1629213, "lon": 10.2011582 }, + { "lat": 56.1629105, "lon": 10.2011233 }, + { "lat": 56.1628774, "lon": 10.2011563 } + ], + "tags": { + "amenity": "parking", + "capacity": "1", + "capacity:disabled": "1", + "disabled": "designated", + "orientation": "perpendicular", + "parking": "street_side" + } +}, +{ + "type": "way", + "id": 1494614587, + "bounds": { + "minlat": 56.1631039, + "minlon": 10.2018585, + "maxlat": 56.1631516, + "maxlon": 10.2019366 + }, + "geometry": [ + { "lat": 56.1631039, "lon": 10.2018923 }, + { "lat": 56.1631380, "lon": 10.2018585 }, + { "lat": 56.1631516, "lon": 10.2019028 }, + { "lat": 56.1631175, "lon": 10.2019366 }, + { "lat": 56.1631039, "lon": 10.2018923 } + ], + "tags": { + "amenity": "parking", + "capacity": "1", + "capacity:disabled": "1", + "disabled": "designated", + "orientation": "perpendicular", + "parking": "street_side" + } +}, +{ + "type": "way", + "id": 1494666997, + "bounds": { + "minlat": 56.1427198, + "minlon": 10.2030571, + "maxlat": 56.1427597, + "maxlon": 10.2031268 + }, + "geometry": [ + { "lat": 56.1427198, "lon": 10.2030852 }, + { "lat": 56.1427258, "lon": 10.2031268 }, + { "lat": 56.1427597, "lon": 10.2030982 }, + { "lat": 56.1427529, "lon": 10.2030571 }, + { "lat": 56.1427198, "lon": 10.2030852 } + ], + "tags": { + "amenity": "parking", + "capacity": "1", + "capacity:disabled": "1", + "disabled": "designated", + "orientation": "perpendicular", + "parking": "street_side" + } +}, +{ + "type": "way", + "id": 1494669499, + "bounds": { + "minlat": 56.1426376, + "minlon": 10.2024777, + "maxlat": 56.1426871, + "maxlon": 10.2025998 + }, + "geometry": [ + { "lat": 56.1426813, "lon": 10.2025157 }, + { "lat": 56.1426871, "lon": 10.2025546 }, + { "lat": 56.1426500, "lon": 10.2025998 }, + { "lat": 56.1426437, "lon": 10.2025607 }, + { "lat": 56.1426376, "lon": 10.2025224 }, + { "lat": 56.1426746, "lon": 10.2024777 }, + { "lat": 56.1426813, "lon": 10.2025157 } + ], + "tags": { + "amenity": "parking", + "capacity": "2", + "capacity:disabled": "2", + "parking": "street_side" + } +}, +{ + "type": "way", + "id": 1494669500, + "bounds": { + "minlat": 56.1426437, + "minlon": 10.2025157, + "maxlat": 56.1426871, + "maxlon": 10.2025998 + }, + "geometry": [ + { "lat": 56.1426871, "lon": 10.2025546 }, + { "lat": 56.1426500, "lon": 10.2025998 }, + { "lat": 56.1426437, "lon": 10.2025607 }, + { "lat": 56.1426813, "lon": 10.2025157 }, + { "lat": 56.1426871, "lon": 10.2025546 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1494669501, + "bounds": { + "minlat": 56.1426376, + "minlon": 10.2024777, + "maxlat": 56.1426813, + "maxlon": 10.2025607 + }, + "geometry": [ + { "lat": 56.1426376, "lon": 10.2025224 }, + { "lat": 56.1426437, "lon": 10.2025607 }, + { "lat": 56.1426813, "lon": 10.2025157 }, + { "lat": 56.1426746, "lon": 10.2024777 }, + { "lat": 56.1426376, "lon": 10.2025224 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1494669847, + "bounds": { + "minlat": 56.1422751, + "minlon": 10.2026184, + "maxlat": 56.1423202, + "maxlon": 10.2027012 + }, + "geometry": [ + { "lat": 56.1422998, "lon": 10.2026184 }, + { "lat": 56.1422751, "lon": 10.2026489 }, + { "lat": 56.1422950, "lon": 10.2027012 }, + { "lat": 56.1423202, "lon": 10.2026708 }, + { "lat": 56.1422998, "lon": 10.2026184 } + ], + "tags": { + "amenity": "parking", + "capacity": "1", + "capacity:disabled": "1", + "disabled": "designated", + "orientation": "perpendicular", + "parking": "street_side" + } +}, +{ + "type": "way", + "id": 1494670036, + "bounds": { + "minlat": 56.1421402, + "minlon": 10.2027765, + "maxlat": 56.1421857, + "maxlon": 10.2028609 + }, + "geometry": [ + { "lat": 56.1421653, "lon": 10.2027765 }, + { "lat": 56.1421402, "lon": 10.2028071 }, + { "lat": 56.1421606, "lon": 10.2028609 }, + { "lat": 56.1421857, "lon": 10.2028302 }, + { "lat": 56.1421653, "lon": 10.2027765 } + ], + "tags": { + "amenity": "parking", + "capacity": "1", + "capacity:disabled": "1", + "disabled": "designated", + "orientation": "perpendicular", + "parking": "street_side" + } +}, +{ + "type": "way", + "id": 1494670862, + "bounds": { + "minlat": 56.1442589, + "minlon": 10.2028088, + "maxlat": 56.1442848, + "maxlon": 10.2029116 + }, + "geometry": [ + { "lat": 56.1442777, "lon": 10.2028088 }, + { "lat": 56.1442589, "lon": 10.2028131 }, + { "lat": 56.1442660, "lon": 10.2029116 }, + { "lat": 56.1442848, "lon": 10.2029073 }, + { "lat": 56.1442777, "lon": 10.2028088 } + ], + "tags": { + "amenity": "parking", + "capacity": "1", + "capacity:disabled": "1", + "disabled": "designated", + "orientation": "parallel", + "parking": "street_side" + } +}, +{ + "type": "way", + "id": 1494671758, + "bounds": { + "minlat": 56.1434750, + "minlon": 10.2015399, + "maxlat": 56.1435033, + "maxlon": 10.2016336 + }, + "geometry": [ + { "lat": 56.1434919, "lon": 10.2015399 }, + { "lat": 56.1434750, "lon": 10.2015490 }, + { "lat": 56.1434872, "lon": 10.2016336 }, + { "lat": 56.1435033, "lon": 10.2016264 }, + { "lat": 56.1434919, "lon": 10.2015399 } + ], + "tags": { + "amenity": "parking", + "capacity": "1", + "capacity:disabled": "1", + "disabled": "designated", + "orientation": "parallel", + "parking": "street_side" + } +}, +{ + "type": "way", + "id": 1494672034, + "bounds": { + "minlat": 56.1400263, + "minlon": 10.2001791, + "maxlat": 56.1400594, + "maxlon": 10.2002762 + }, + "geometry": [ + { "lat": 56.1400427, "lon": 10.2001791 }, + { "lat": 56.1400263, "lon": 10.2001893 }, + { "lat": 56.1400431, "lon": 10.2002762 }, + { "lat": 56.1400594, "lon": 10.2002661 }, + { "lat": 56.1400427, "lon": 10.2001791 } + ], + "tags": { + "amenity": "parking", + "capacity": "1", + "capacity:disabled": "1", + "disabled": "designated", + "orientation": "parallel", + "parking": "street_side" + } +}, +{ + "type": "way", + "id": 1494672826, + "bounds": { + "minlat": 56.1409871, + "minlon": 10.1982319, + "maxlat": 56.1410497, + "maxlon": 10.1986846 + }, + "geometry": [ + { "lat": 56.1410497, "lon": 10.1986788 }, + { "lat": 56.1410317, "lon": 10.1986846 }, + { "lat": 56.1409871, "lon": 10.1982377 }, + { "lat": 56.1410050, "lon": 10.1982319 }, + { "lat": 56.1410497, "lon": 10.1986788 } + ], + "tags": { + "amenity": "parking", + "capacity": "4", + "capacity:disabled": "4", + "disabled": "designated", + "orientation": "parallel", + "parking": "street_side" + } +}, +{ + "type": "way", + "id": 1494703397, + "bounds": { + "minlat": 56.1459131, + "minlon": 10.1912035, + "maxlat": 56.1459590, + "maxlon": 10.1912826 + }, + "geometry": [ + { "lat": 56.1459450, "lon": 10.1912035 }, + { "lat": 56.1459131, "lon": 10.1912544 }, + { "lat": 56.1459270, "lon": 10.1912826 }, + { "lat": 56.1459590, "lon": 10.1912316 }, + { "lat": 56.1459450, "lon": 10.1912035 } + ], + "tags": { + "amenity": "parking", + "capacity": "1", + "capacity:disabled": "1", + "disabled": "designated", + "orientation": "perpendicular", + "parking": "street_side" + } +}, +{ + "type": "way", + "id": 1494703492, + "bounds": { + "minlat": 56.1452078, + "minlon": 10.1922672, + "maxlat": 56.1452433, + "maxlon": 10.1923293 + }, + "geometry": [ + { "lat": 56.1452326, "lon": 10.1922672 }, + { "lat": 56.1452433, "lon": 10.1922878 }, + { "lat": 56.1452184, "lon": 10.1923293 }, + { "lat": 56.1452078, "lon": 10.1923086 }, + { "lat": 56.1452326, "lon": 10.1922672 } + ], + "tags": { + "amenity": "parking", + "capacity": "1", + "capacity:disabled": "1", + "disabled": "designated", + "orientation": "parallel", + "parking": "street_side" + } +}, +{ + "type": "way", + "id": 1494704514, + "bounds": { + "minlat": 56.1432939, + "minlon": 10.1927973, + "maxlat": 56.1433681, + "maxlon": 10.1928686 + }, + "geometry": [ + { "lat": 56.1433681, "lon": 10.1927973 }, + { "lat": 56.1433301, "lon": 10.1928100 }, + { "lat": 56.1432939, "lon": 10.1928686 }, + { "lat": 56.1433323, "lon": 10.1928655 }, + { "lat": 56.1433681, "lon": 10.1927973 } + ], + "tags": { + "amenity": "parking", + "capacity": "1", + "capacity:disabled": "1", + "disabled": "designated", + "orientation": "diagonal", + "parking": "street_side" + } +}, +{ + "type": "way", + "id": 1494704664, + "bounds": { + "minlat": 56.1432280, + "minlon": 10.1929398, + "maxlat": 56.1432535, + "maxlon": 10.1930477 + }, + "geometry": [ + { "lat": 56.1432448, "lon": 10.1929398 }, + { "lat": 56.1432280, "lon": 10.1929444 }, + { "lat": 56.1432367, "lon": 10.1930477 }, + { "lat": 56.1432535, "lon": 10.1930432 }, + { "lat": 56.1432448, "lon": 10.1929398 } + ], + "tags": { + "amenity": "parking", + "capacity": "1", + "capacity:disabled": "1", + "disabled": "designated", + "orientation": "parallel", + "parking": "street_side" + } +}, +{ + "type": "way", + "id": 1494704787, + "bounds": { + "minlat": 56.1431682, + "minlon": 10.1921945, + "maxlat": 56.1431921, + "maxlon": 10.1922798 + }, + "geometry": [ + { "lat": 56.1431921, "lon": 10.1922754 }, + { "lat": 56.1431745, "lon": 10.1922798 }, + { "lat": 56.1431682, "lon": 10.1921989 }, + { "lat": 56.1431857, "lon": 10.1921945 }, + { "lat": 56.1431921, "lon": 10.1922754 } + ], + "tags": { + "amenity": "parking", + "capacity": "1", + "capacity:disabled": "1", + "disabled": "designated", + "orientation": "parallel", + "parking": "street_side" + } +}, +{ + "type": "way", + "id": 1494704993, + "bounds": { + "minlat": 56.1431065, + "minlon": 10.1940122, + "maxlat": 56.1431617, + "maxlon": 10.1941063 + }, + "geometry": [ + { "lat": 56.1431617, "lon": 10.1940122 }, + { "lat": 56.1431258, "lon": 10.1940254 }, + { "lat": 56.1431065, "lon": 10.1941063 }, + { "lat": 56.1431391, "lon": 10.1940981 }, + { "lat": 56.1431617, "lon": 10.1940122 } + ], + "tags": { + "amenity": "parking", + "capacity": "1", + "capacity:disabled": "1", + "disabled": "designated", + "orientation": "diagonal", + "parking": "street_side" + } +}, +{ + "type": "way", + "id": 1494705273, + "bounds": { + "minlat": 56.1438241, + "minlon": 10.1940108, + "maxlat": 56.1438734, + "maxlon": 10.1940579 + }, + "geometry": [ + { "lat": 56.1438263, "lon": 10.1940579 }, + { "lat": 56.1438241, "lon": 10.1940198 }, + { "lat": 56.1438711, "lon": 10.1940108 }, + { "lat": 56.1438734, "lon": 10.1940489 }, + { "lat": 56.1438263, "lon": 10.1940579 } + ], + "tags": { + "amenity": "parking", + "capacity": "1", + "capacity:disabled": "1", + "disabled": "designated", + "orientation": "parallel", + "parking": "street_side" + } +}, +{ + "type": "way", + "id": 1494705566, + "bounds": { + "minlat": 56.1446167, + "minlon": 10.1936630, + "maxlat": 56.1446513, + "maxlon": 10.1938654 + }, + "geometry": [ + { "lat": 56.1446513, "lon": 10.1938605 }, + { "lat": 56.1446330, "lon": 10.1938654 }, + { "lat": 56.1446248, "lon": 10.1937654 }, + { "lat": 56.1446167, "lon": 10.1936678 }, + { "lat": 56.1446350, "lon": 10.1936630 }, + { "lat": 56.1446430, "lon": 10.1937598 }, + { "lat": 56.1446513, "lon": 10.1938605 } + ], + "tags": { + "amenity": "parking", + "capacity": "2", + "capacity:disabled": "2", + "orientation": "parallel", + "parking": "street_side" + } +}, +{ + "type": "way", + "id": 1494705567, + "bounds": { + "minlat": 56.1446248, + "minlon": 10.1937598, + "maxlat": 56.1446513, + "maxlon": 10.1938654 + }, + "geometry": [ + { "lat": 56.1446330, "lon": 10.1938654 }, + { "lat": 56.1446513, "lon": 10.1938605 }, + { "lat": 56.1446430, "lon": 10.1937598 }, + { "lat": 56.1446248, "lon": 10.1937654 }, + { "lat": 56.1446330, "lon": 10.1938654 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1494705568, + "bounds": { + "minlat": 56.1446167, + "minlon": 10.1936630, + "maxlat": 56.1446430, + "maxlon": 10.1937654 + }, + "geometry": [ + { "lat": 56.1446430, "lon": 10.1937598 }, + { "lat": 56.1446350, "lon": 10.1936630 }, + { "lat": 56.1446167, "lon": 10.1936678 }, + { "lat": 56.1446248, "lon": 10.1937654 }, + { "lat": 56.1446430, "lon": 10.1937598 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1494912225, + "bounds": { + "minlat": 56.1583668, + "minlon": 10.1891043, + "maxlat": 56.1584004, + "maxlon": 10.1891865 + }, + "geometry": [ + { "lat": 56.1583864, "lon": 10.1891865 }, + { "lat": 56.1584004, "lon": 10.1891159 }, + { "lat": 56.1583802, "lon": 10.1891043 }, + { "lat": 56.1583668, "lon": 10.1891749 }, + { "lat": 56.1583864, "lon": 10.1891865 } + ], + "tags": { + "amenity": "parking", + "capacity": "1", + "capacity:disabled": "1", + "disabled": "designated", + "orientation": "perpendicular", + "parking": "street_side" + } +}, +{ + "type": "way", + "id": 1494912226, + "bounds": { + "minlat": 56.1585596, + "minlon": 10.1892569, + "maxlat": 56.1585960, + "maxlon": 10.1893378 + }, + "geometry": [ + { "lat": 56.1585765, "lon": 10.1892569 }, + { "lat": 56.1585960, "lon": 10.1892733 }, + { "lat": 56.1585790, "lon": 10.1893378 }, + { "lat": 56.1585596, "lon": 10.1893214 }, + { "lat": 56.1585765, "lon": 10.1892569 } + ], + "tags": { + "amenity": "parking", + "capacity": "1", + "capacity:disabled": "1", + "disabled": "designated", + "orientation": "perpendicular", + "parking": "street_side" + } +}, +{ + "type": "way", + "id": 1494912227, + "bounds": { + "minlat": 56.1587045, + "minlon": 10.1893941, + "maxlat": 56.1587460, + "maxlon": 10.1894861 + }, + "geometry": [ + { "lat": 56.1587255, "lon": 10.1893941 }, + { "lat": 56.1587460, "lon": 10.1894131 }, + { "lat": 56.1587250, "lon": 10.1894861 }, + { "lat": 56.1587045, "lon": 10.1894671 }, + { "lat": 56.1587255, "lon": 10.1893941 } + ], + "tags": { + "amenity": "parking", + "capacity": "1", + "capacity:disabled": "1", + "disabled": "designated", + "orientation": "perpendicular", + "parking": "street_side" + } +}, +{ + "type": "way", + "id": 1494923839, + "bounds": { + "minlat": 56.1575208, + "minlon": 10.1890183, + "maxlat": 56.1576282, + "maxlon": 10.1890591 + }, + "geometry": [ + { "lat": 56.1575208, "lon": 10.1890547 }, + { "lat": 56.1575212, "lon": 10.1890183 }, + { "lat": 56.1575770, "lon": 10.1890199 }, + { "lat": 56.1576282, "lon": 10.1890228 }, + { "lat": 56.1576278, "lon": 10.1890591 }, + { "lat": 56.1575767, "lon": 10.1890569 }, + { "lat": 56.1575208, "lon": 10.1890547 } + ], + "tags": { + "amenity": "parking", + "capacity": "2", + "capacity:disabled": "2", + "orientation": "parallel", + "parking": "street_side" + } +}, +{ + "type": "way", + "id": 1494923840, + "bounds": { + "minlat": 56.1575208, + "minlon": 10.1890183, + "maxlat": 56.1575770, + "maxlon": 10.1890569 + }, + "geometry": [ + { "lat": 56.1575208, "lon": 10.1890547 }, + { "lat": 56.1575767, "lon": 10.1890569 }, + { "lat": 56.1575770, "lon": 10.1890199 }, + { "lat": 56.1575212, "lon": 10.1890183 }, + { "lat": 56.1575208, "lon": 10.1890547 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1494923841, + "bounds": { + "minlat": 56.1575767, + "minlon": 10.1890199, + "maxlat": 56.1576282, + "maxlon": 10.1890591 + }, + "geometry": [ + { "lat": 56.1576282, "lon": 10.1890228 }, + { "lat": 56.1576278, "lon": 10.1890591 }, + { "lat": 56.1575767, "lon": 10.1890569 }, + { "lat": 56.1575770, "lon": 10.1890199 }, + { "lat": 56.1576282, "lon": 10.1890228 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1494924897, + "bounds": { + "minlat": 56.1568110, + "minlon": 10.1888243, + "maxlat": 56.1568339, + "maxlon": 10.1888993 + }, + "geometry": [ + { "lat": 56.1568337, "lon": 10.1888993 }, + { "lat": 56.1568110, "lon": 10.1888991 }, + { "lat": 56.1568112, "lon": 10.1888243 }, + { "lat": 56.1568339, "lon": 10.1888244 }, + { "lat": 56.1568337, "lon": 10.1888993 } + ], + "tags": { + "amenity": "parking", + "capacity": "1", + "capacity:disabled": "1", + "disabled": "designated", + "orientation": "perpendicular", + "parking": "street_side" + } +}, +{ + "type": "way", + "id": 1494926696, + "bounds": { + "minlat": 56.1568016, + "minlon": 10.1864918, + "maxlat": 56.1568585, + "maxlon": 10.1865468 + }, + "geometry": [ + { "lat": 56.1568016, "lon": 10.1865288 }, + { "lat": 56.1568276, "lon": 10.1865468 }, + { "lat": 56.1568585, "lon": 10.1865048 }, + { "lat": 56.1568290, "lon": 10.1864918 }, + { "lat": 56.1568016, "lon": 10.1865288 } + ], + "tags": { + "amenity": "parking", + "capacity": "1", + "capacity:disabled": "1", + "disabled": "designated", + "orientation": "diagonal", + "parking": "street_side" + } +}, +{ + "type": "way", + "id": 1494928518, + "bounds": { + "minlat": 56.1571029, + "minlon": 10.1832613, + "maxlat": 56.1571467, + "maxlon": 10.1833980 + }, + "geometry": [ + { "lat": 56.1571467, "lon": 10.1832613 }, + { "lat": 56.1571466, "lon": 10.1833212 }, + { "lat": 56.1571465, "lon": 10.1833811 }, + { "lat": 56.1571029, "lon": 10.1833980 }, + { "lat": 56.1571033, "lon": 10.1833390 }, + { "lat": 56.1571037, "lon": 10.1832792 }, + { "lat": 56.1571467, "lon": 10.1832613 } + ], + "tags": { + "amenity": "parking", + "capacity": "2", + "capacity:disabled": "2", + "orientation": "diagonal", + "parking": "street_side" + } +}, +{ + "type": "way", + "id": 1494928519, + "bounds": { + "minlat": 56.1571029, + "minlon": 10.1833212, + "maxlat": 56.1571466, + "maxlon": 10.1833980 + }, + "geometry": [ + { "lat": 56.1571029, "lon": 10.1833980 }, + { "lat": 56.1571465, "lon": 10.1833811 }, + { "lat": 56.1571466, "lon": 10.1833212 }, + { "lat": 56.1571033, "lon": 10.1833390 }, + { "lat": 56.1571029, "lon": 10.1833980 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1494928520, + "bounds": { + "minlat": 56.1571033, + "minlon": 10.1832613, + "maxlat": 56.1571467, + "maxlon": 10.1833390 + }, + "geometry": [ + { "lat": 56.1571466, "lon": 10.1833212 }, + { "lat": 56.1571467, "lon": 10.1832613 }, + { "lat": 56.1571037, "lon": 10.1832792 }, + { "lat": 56.1571033, "lon": 10.1833390 }, + { "lat": 56.1571466, "lon": 10.1833212 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1494931265, + "bounds": { + "minlat": 56.1594780, + "minlon": 10.1844293, + "maxlat": 56.1595764, + "maxlon": 10.1844640 + }, + "geometry": [ + { "lat": 56.1595764, "lon": 10.1844328 }, + { "lat": 56.1595289, "lon": 10.1844311 }, + { "lat": 56.1594783, "lon": 10.1844293 }, + { "lat": 56.1594780, "lon": 10.1844604 }, + { "lat": 56.1595283, "lon": 10.1844622 }, + { "lat": 56.1595760, "lon": 10.1844640 }, + { "lat": 56.1595764, "lon": 10.1844328 } + ], + "tags": { + "amenity": "parking", + "capacity": "2", + "capacity:disabled": "2", + "orientation": "parallel", + "parking": "street_side" + } +}, +{ + "type": "way", + "id": 1494931266, + "bounds": { + "minlat": 56.1595283, + "minlon": 10.1844311, + "maxlat": 56.1595764, + "maxlon": 10.1844640 + }, + "geometry": [ + { "lat": 56.1595760, "lon": 10.1844640 }, + { "lat": 56.1595283, "lon": 10.1844622 }, + { "lat": 56.1595289, "lon": 10.1844311 }, + { "lat": 56.1595764, "lon": 10.1844328 }, + { "lat": 56.1595760, "lon": 10.1844640 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1494931267, + "bounds": { + "minlat": 56.1594780, + "minlon": 10.1844293, + "maxlat": 56.1595289, + "maxlon": 10.1844622 + }, + "geometry": [ + { "lat": 56.1595283, "lon": 10.1844622 }, + { "lat": 56.1594780, "lon": 10.1844604 }, + { "lat": 56.1594783, "lon": 10.1844293 }, + { "lat": 56.1595289, "lon": 10.1844311 }, + { "lat": 56.1595283, "lon": 10.1844622 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1494931268, + "bounds": { + "minlat": 56.1597368, + "minlon": 10.1844300, + "maxlat": 56.1598322, + "maxlon": 10.1844616 + }, + "geometry": [ + { "lat": 56.1598322, "lon": 10.1844302 }, + { "lat": 56.1597854, "lon": 10.1844301 }, + { "lat": 56.1597368, "lon": 10.1844300 }, + { "lat": 56.1597368, "lon": 10.1844615 }, + { "lat": 56.1597856, "lon": 10.1844615 }, + { "lat": 56.1598322, "lon": 10.1844616 }, + { "lat": 56.1598322, "lon": 10.1844302 } + ], + "tags": { + "amenity": "parking", + "capacity": "2", + "capacity:disabled": "2", + "orientation": "parallel", + "parking": "street_side" + } +}, +{ + "type": "way", + "id": 1494931269, + "bounds": { + "minlat": 56.1597854, + "minlon": 10.1844301, + "maxlat": 56.1598322, + "maxlon": 10.1844616 + }, + "geometry": [ + { "lat": 56.1597856, "lon": 10.1844615 }, + { "lat": 56.1598322, "lon": 10.1844616 }, + { "lat": 56.1598322, "lon": 10.1844302 }, + { "lat": 56.1597854, "lon": 10.1844301 }, + { "lat": 56.1597856, "lon": 10.1844615 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1494931270, + "bounds": { + "minlat": 56.1597368, + "minlon": 10.1844300, + "maxlat": 56.1597856, + "maxlon": 10.1844615 + }, + "geometry": [ + { "lat": 56.1597856, "lon": 10.1844615 }, + { "lat": 56.1597368, "lon": 10.1844615 }, + { "lat": 56.1597368, "lon": 10.1844300 }, + { "lat": 56.1597854, "lon": 10.1844301 }, + { "lat": 56.1597856, "lon": 10.1844615 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1494931867, + "bounds": { + "minlat": 56.1625283, + "minlon": 10.1861161, + "maxlat": 56.1625930, + "maxlon": 10.1861724 + }, + "geometry": [ + { "lat": 56.1625472, "lon": 10.1861161 }, + { "lat": 56.1625930, "lon": 10.1861169 }, + { "lat": 56.1625749, "lon": 10.1861715 }, + { "lat": 56.1625283, "lon": 10.1861724 }, + { "lat": 56.1625472, "lon": 10.1861161 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1494946190, + "bounds": { + "minlat": 56.1521870, + "minlon": 10.1674363, + "maxlat": 56.1522310, + "maxlon": 10.1675620 + }, + "geometry": [ + { "lat": 56.1521870, "lon": 10.1674502 }, + { "lat": 56.1522099, "lon": 10.1674363 }, + { "lat": 56.1522310, "lon": 10.1675480 }, + { "lat": 56.1522080, "lon": 10.1675620 }, + { "lat": 56.1521870, "lon": 10.1674502 } + ], + "tags": { + "amenity": "parking", + "capacity": "1", + "capacity:disabled": "1", + "disabled": "designated", + "orientation": "parallel", + "parking": "street_side" + } +}, +{ + "type": "way", + "id": 1494946537, + "bounds": { + "minlat": 56.1543403, + "minlon": 10.1867819, + "maxlat": 56.1543894, + "maxlon": 10.1868964 + }, + "geometry": [ + { "lat": 56.1543865, "lon": 10.1867819 }, + { "lat": 56.1543403, "lon": 10.1867858 }, + { "lat": 56.1543418, "lon": 10.1868422 }, + { "lat": 56.1543432, "lon": 10.1868964 }, + { "lat": 56.1543894, "lon": 10.1868924 }, + { "lat": 56.1543880, "lon": 10.1868379 }, + { "lat": 56.1543865, "lon": 10.1867819 } + ], + "tags": { + "amenity": "parking", + "capacity": "2", + "capacity:disabled": "2", + "orientation": "perpendicular", + "parking": "street_side" + } +}, +{ + "type": "way", + "id": 1494946538, + "bounds": { + "minlat": 56.1543418, + "minlon": 10.1868379, + "maxlat": 56.1543894, + "maxlon": 10.1868964 + }, + "geometry": [ + { "lat": 56.1543894, "lon": 10.1868924 }, + { "lat": 56.1543880, "lon": 10.1868379 }, + { "lat": 56.1543418, "lon": 10.1868422 }, + { "lat": 56.1543432, "lon": 10.1868964 }, + { "lat": 56.1543894, "lon": 10.1868924 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1494946539, + "bounds": { + "minlat": 56.1543403, + "minlon": 10.1867819, + "maxlat": 56.1543880, + "maxlon": 10.1868422 + }, + "geometry": [ + { "lat": 56.1543880, "lon": 10.1868379 }, + { "lat": 56.1543865, "lon": 10.1867819 }, + { "lat": 56.1543403, "lon": 10.1867858 }, + { "lat": 56.1543418, "lon": 10.1868422 }, + { "lat": 56.1543880, "lon": 10.1868379 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1494947009, + "bounds": { + "minlat": 56.1545773, + "minlon": 10.1883725, + "maxlat": 56.1546236, + "maxlon": 10.1884311 + }, + "geometry": [ + { "lat": 56.1546220, "lon": 10.1883725 }, + { "lat": 56.1545773, "lon": 10.1883768 }, + { "lat": 56.1545789, "lon": 10.1884311 }, + { "lat": 56.1546236, "lon": 10.1884268 }, + { "lat": 56.1546220, "lon": 10.1883725 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1494984476, + "bounds": { + "minlat": 56.1548598, + "minlon": 10.1954552, + "maxlat": 56.1548841, + "maxlon": 10.1955684 + }, + "geometry": [ + { "lat": 56.1548598, "lon": 10.1954995 }, + { "lat": 56.1548770, "lon": 10.1954552 }, + { "lat": 56.1548841, "lon": 10.1955318 }, + { "lat": 56.1548672, "lon": 10.1955684 }, + { "lat": 56.1548598, "lon": 10.1954995 } + ], + "tags": { + "amenity": "parking", + "capacity": "1", + "capacity:disabled": "1", + "disabled": "designated", + "orientation": "diagonal", + "parking": "street_side" + } +}, +{ + "type": "way", + "id": 1495000129, + "bounds": { + "minlat": 56.1503708, + "minlon": 10.1952704, + "maxlat": 56.1504134, + "maxlon": 10.1953230 + }, + "geometry": [ + { "lat": 56.1503755, "lon": 10.1952704 }, + { "lat": 56.1503708, "lon": 10.1953074 }, + { "lat": 56.1504087, "lon": 10.1953230 }, + { "lat": 56.1504134, "lon": 10.1952860 }, + { "lat": 56.1503755, "lon": 10.1952704 } + ], + "tags": { + "amenity": "parking", + "capacity": "1", + "capacity:disabled": "1", + "disabled": "designated", + "orientation": "parallel", + "parking": "street_side" + } +}, +{ + "type": "way", + "id": 1495000288, + "bounds": { + "minlat": 56.1465609, + "minlon": 10.1926610, + "maxlat": 56.1466084, + "maxlon": 10.1927120 + }, + "geometry": [ + { "lat": 56.1465655, "lon": 10.1927120 }, + { "lat": 56.1465609, "lon": 10.1926831 }, + { "lat": 56.1466037, "lon": 10.1926610 }, + { "lat": 56.1466084, "lon": 10.1926899 }, + { "lat": 56.1465655, "lon": 10.1927120 } + ], + "tags": { + "amenity": "parking", + "capacity": "1", + "capacity:disabled": "1", + "disabled": "designated", + "orientation": "parallel", + "parking": "street_side" + } +}, +{ + "type": "way", + "id": 1495034898, + "bounds": { + "minlat": 56.1450926, + "minlon": 10.1951484, + "maxlat": 56.1451505, + "maxlon": 10.1952244 + }, + "geometry": [ + { "lat": 56.1451298, "lon": 10.1951526 }, + { "lat": 56.1450926, "lon": 10.1951484 }, + { "lat": 56.1451129, "lon": 10.1952180 }, + { "lat": 56.1451505, "lon": 10.1952244 }, + { "lat": 56.1451298, "lon": 10.1951526 } + ], + "tags": { + "amenity": "parking", + "capacity": "1", + "capacity:disabled": "1", + "disabled": "designated", + "orientation": "diagonal", + "parking": "street_side" + } +}, +{ + "type": "way", + "id": 1495083871, + "bounds": { + "minlat": 56.1333840, + "minlon": 10.1819919, + "maxlat": 56.1334177, + "maxlon": 10.1820936 + }, + "geometry": [ + { "lat": 56.1333840, "lon": 10.1820018 }, + { "lat": 56.1334018, "lon": 10.1819919 }, + { "lat": 56.1334177, "lon": 10.1820837 }, + { "lat": 56.1333999, "lon": 10.1820936 }, + { "lat": 56.1333840, "lon": 10.1820018 } + ], + "tags": { + "amenity": "parking", + "capacity": "1", + "capacity:disabled": "1", + "disabled": "designated", + "orientation": "parallel", + "parking": "street_side" + } +}, +{ + "type": "way", + "id": 1495091161, + "bounds": { + "minlat": 56.1436861, + "minlon": 10.1852573, + "maxlat": 56.1437302, + "maxlon": 10.1853280 + }, + "geometry": [ + { "lat": 56.1436861, "lon": 10.1853024 }, + { "lat": 56.1436968, "lon": 10.1852573 }, + { "lat": 56.1437302, "lon": 10.1852828 }, + { "lat": 56.1437195, "lon": 10.1853280 }, + { "lat": 56.1436861, "lon": 10.1853024 } + ], + "tags": { + "amenity": "parking", + "capacity": "1", + "capacity:disabled": "1", + "disabled": "designated", + "orientation": "perpendicular", + "parking": "street_side" + } +}, +{ + "type": "way", + "id": 1495097528, + "bounds": { + "minlat": 56.1408364, + "minlon": 10.1967692, + "maxlat": 56.1408615, + "maxlon": 10.1968598 + }, + "geometry": [ + { "lat": 56.1408532, "lon": 10.1967692 }, + { "lat": 56.1408364, "lon": 10.1967744 }, + { "lat": 56.1408446, "lon": 10.1968598 }, + { "lat": 56.1408615, "lon": 10.1968546 }, + { "lat": 56.1408532, "lon": 10.1967692 } + ], + "tags": { + "amenity": "parking", + "capacity": "1", + "capacity:disabled": "1", + "disabled": "designated", + "orientation": "parallel", + "parking": "street_side" + } +}, +{ + "type": "way", + "id": 1495165425, + "bounds": { + "minlat": 56.1443558, + "minlon": 10.1880023, + "maxlat": 56.1443990, + "maxlon": 10.1880781 + }, + "geometry": [ + { "lat": 56.1443558, "lon": 10.1880294 }, + { "lat": 56.1443699, "lon": 10.1880023 }, + { "lat": 56.1443990, "lon": 10.1880511 }, + { "lat": 56.1443849, "lon": 10.1880781 }, + { "lat": 56.1443558, "lon": 10.1880294 } + ], + "tags": { + "amenity": "parking", + "capacity": "1", + "capacity:disabled": "1", + "disabled": "designated", + "orientation": "parallel", + "parking": "street_side" + } +}, +{ + "type": "way", + "id": 1495165426, + "bounds": { + "minlat": 56.1442528, + "minlon": 10.1880303, + "maxlat": 56.1442960, + "maxlon": 10.1881061 + }, + "geometry": [ + { "lat": 56.1442528, "lon": 10.1880573 }, + { "lat": 56.1442669, "lon": 10.1880303 }, + { "lat": 56.1442960, "lon": 10.1880790 }, + { "lat": 56.1442819, "lon": 10.1881061 }, + { "lat": 56.1442528, "lon": 10.1880573 } + ], + "tags": { + "amenity": "parking", + "capacity": "1", + "capacity:disabled": "1", + "disabled": "designated", + "orientation": "parallel", + "parking": "street_side" + } +}, +{ + "type": "way", + "id": 1495165427, + "bounds": { + "minlat": 56.1441770, + "minlon": 10.1878976, + "maxlat": 56.1442201, + "maxlon": 10.1879734 + }, + "geometry": [ + { "lat": 56.1441770, "lon": 10.1879247 }, + { "lat": 56.1441911, "lon": 10.1878976 }, + { "lat": 56.1442201, "lon": 10.1879464 }, + { "lat": 56.1442061, "lon": 10.1879734 }, + { "lat": 56.1441770, "lon": 10.1879247 } + ], + "tags": { + "amenity": "parking", + "capacity": "1", + "capacity:disabled": "1", + "disabled": "designated", + "orientation": "parallel", + "parking": "street_side" + } +}, +{ + "type": "way", + "id": 1495182700, + "bounds": { + "minlat": 56.1388040, + "minlon": 10.1895595, + "maxlat": 56.1388294, + "maxlon": 10.1896508 + }, + "geometry": [ + { "lat": 56.1388294, "lon": 10.1896481 }, + { "lat": 56.1388072, "lon": 10.1896508 }, + { "lat": 56.1388040, "lon": 10.1895621 }, + { "lat": 56.1388261, "lon": 10.1895595 }, + { "lat": 56.1388294, "lon": 10.1896481 } + ], + "tags": { + "amenity": "parking", + "capacity": "1", + "capacity:disabled": "1", + "disabled": "designated", + "orientation": "parallel", + "parking": "street_side" + } +}, +{ + "type": "way", + "id": 1495183128, + "bounds": { + "minlat": 56.1388655, + "minlon": 10.1905230, + "maxlat": 56.1389032, + "maxlon": 10.1907162 + }, + "geometry": [ + { "lat": 56.1389032, "lon": 10.1907102 }, + { "lat": 56.1388865, "lon": 10.1907162 }, + { "lat": 56.1388769, "lon": 10.1906270 }, + { "lat": 56.1388655, "lon": 10.1905293 }, + { "lat": 56.1388822, "lon": 10.1905230 }, + { "lat": 56.1388936, "lon": 10.1906207 }, + { "lat": 56.1389032, "lon": 10.1907102 } + ], + "tags": { + "amenity": "parking", + "capacity": "2", + "capacity:disabled": "2", + "orientation": "parallel", + "parking": "street_side" + } +}, +{ + "type": "way", + "id": 1495183129, + "bounds": { + "minlat": 56.1388769, + "minlon": 10.1906207, + "maxlat": 56.1389032, + "maxlon": 10.1907162 + }, + "geometry": [ + { "lat": 56.1388865, "lon": 10.1907162 }, + { "lat": 56.1388769, "lon": 10.1906270 }, + { "lat": 56.1388936, "lon": 10.1906207 }, + { "lat": 56.1389032, "lon": 10.1907102 }, + { "lat": 56.1388865, "lon": 10.1907162 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1495183130, + "bounds": { + "minlat": 56.1388655, + "minlon": 10.1905230, + "maxlat": 56.1388936, + "maxlon": 10.1906270 + }, + "geometry": [ + { "lat": 56.1388936, "lon": 10.1906207 }, + { "lat": 56.1388822, "lon": 10.1905230 }, + { "lat": 56.1388655, "lon": 10.1905293 }, + { "lat": 56.1388769, "lon": 10.1906270 }, + { "lat": 56.1388936, "lon": 10.1906207 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1495970204, + "bounds": { + "minlat": 56.1765467, + "minlon": 10.1361239, + "maxlat": 56.1766237, + "maxlon": 10.1362052 + }, + "geometry": [ + { "lat": 56.1766221, "lon": 10.1362052 }, + { "lat": 56.1765467, "lon": 10.1362001 }, + { "lat": 56.1765483, "lon": 10.1361239 }, + { "lat": 56.1765770, "lon": 10.1361258 }, + { "lat": 56.1766237, "lon": 10.1361290 }, + { "lat": 56.1766221, "lon": 10.1362052 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1495970205, + "bounds": { + "minlat": 56.1765448, + "minlon": 10.1362001, + "maxlat": 56.1766221, + "maxlon": 10.1362722 + }, + "geometry": [ + { "lat": 56.1766212, "lon": 10.1362722 }, + { "lat": 56.1765448, "lon": 10.1362689 }, + { "lat": 56.1765467, "lon": 10.1362001 }, + { "lat": 56.1766221, "lon": 10.1362052 }, + { "lat": 56.1766212, "lon": 10.1362722 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1495970211, + "bounds": { + "minlat": 56.1768972, + "minlon": 10.1370306, + "maxlat": 56.1769529, + "maxlon": 10.1371329 + }, + "geometry": [ + { "lat": 56.1768972, "lon": 10.1371038 }, + { "lat": 56.1769358, "lon": 10.1371329 }, + { "lat": 56.1769529, "lon": 10.1370597 }, + { "lat": 56.1769143, "lon": 10.1370306 }, + { "lat": 56.1768972, "lon": 10.1371038 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1497331546, + "bounds": { + "minlat": 56.1688988, + "minlon": 10.1960691, + "maxlat": 56.1690293, + "maxlon": 10.1963595 + }, + "geometry": [ + { "lat": 56.1689420, "lon": 10.1960691 }, + { "lat": 56.1689601, "lon": 10.1961184 }, + { "lat": 56.1690293, "lon": 10.1963070 }, + { "lat": 56.1689842, "lon": 10.1963595 }, + { "lat": 56.1689160, "lon": 10.1961674 }, + { "lat": 56.1688988, "lon": 10.1961188 }, + { "lat": 56.1689420, "lon": 10.1960691 } + ], + "tags": { + "amenity": "parking", + "capacity": "7", + "capacity:disabled": "1", + "parking": "street_side" + } +}, +{ + "type": "way", + "id": 1497331551, + "bounds": { + "minlat": 56.1693807, + "minlon": 10.1975831, + "maxlat": 56.1695269, + "maxlon": 10.1979758 + }, + "geometry": [ + { "lat": 56.1694150, "lon": 10.1975831 }, + { "lat": 56.1694309, "lon": 10.1976334 }, + { "lat": 56.1695269, "lon": 10.1979367 }, + { "lat": 56.1694890, "lon": 10.1979758 }, + { "lat": 56.1693956, "lon": 10.1976667 }, + { "lat": 56.1693807, "lon": 10.1976174 }, + { "lat": 56.1694150, "lon": 10.1975831 } + ], + "tags": { + "amenity": "parking", + "capacity": "10", + "capacity:disabled": "1", + "parking": "street_side" + } +}, +{ + "type": "way", + "id": 1499739572, + "bounds": { + "minlat": 56.1871764, + "minlon": 10.1975175, + "maxlat": 56.1872506, + "maxlon": 10.1976772 + }, + "geometry": [ + { "lat": 56.1871764, "lon": 10.1976594 }, + { "lat": 56.1871891, "lon": 10.1976772 }, + { "lat": 56.1872202, "lon": 10.1976063 }, + { "lat": 56.1872506, "lon": 10.1975352 }, + { "lat": 56.1872377, "lon": 10.1975175 }, + { "lat": 56.1872074, "lon": 10.1975885 }, + { "lat": 56.1871764, "lon": 10.1976594 } + ], + "tags": { + "amenity": "parking", + "capacity": "2", + "capacity:disabled": "1", + "orientation": "parallel", + "parking": "street_side" + } +}, +{ + "type": "way", + "id": 1499739573, + "bounds": { + "minlat": 56.1872074, + "minlon": 10.1975175, + "maxlat": 56.1872506, + "maxlon": 10.1976063 + }, + "geometry": [ + { "lat": 56.1872074, "lon": 10.1975885 }, + { "lat": 56.1872202, "lon": 10.1976063 }, + { "lat": 56.1872506, "lon": 10.1975352 }, + { "lat": 56.1872377, "lon": 10.1975175 }, + { "lat": 56.1872074, "lon": 10.1975885 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1499739574, + "bounds": { + "minlat": 56.1848112, + "minlon": 10.2019064, + "maxlat": 56.1848647, + "maxlon": 10.2020042 + }, + "geometry": [ + { "lat": 56.1848385, "lon": 10.2019064 }, + { "lat": 56.1848112, "lon": 10.2019459 }, + { "lat": 56.1848374, "lon": 10.2020042 }, + { "lat": 56.1848647, "lon": 10.2019647 }, + { "lat": 56.1848385, "lon": 10.2019064 } + ], + "tags": { + "amenity": "parking", + "capacity": "1", + "capacity:disabled": "1", + "disabled": "yes", + "orientation": "perpendicular", + "parking": "street_side" + } +}, +{ + "type": "way", + "id": 1502250441, + "bounds": { + "minlat": 56.0909424, + "minlon": 10.1360122, + "maxlat": 56.0910491, + "maxlon": 10.1361032 + }, + "geometry": [ + { "lat": 56.0909492, "lon": 10.1360122 }, + { "lat": 56.0909424, "lon": 10.1360486 }, + { "lat": 56.0909910, "lon": 10.1360761 }, + { "lat": 56.0910430, "lon": 10.1361032 }, + { "lat": 56.0910491, "lon": 10.1360653 }, + { "lat": 56.0909972, "lon": 10.1360382 }, + { "lat": 56.0909492, "lon": 10.1360122 } + ], + "tags": { + "amenity": "parking", + "capacity": "2", + "capacity:disabled": "2", + "orientation": "parallel", + "parking": "street_side" + } +}, +{ + "type": "way", + "id": 1502250442, + "bounds": { + "minlat": 56.0909910, + "minlon": 10.1360382, + "maxlat": 56.0910491, + "maxlon": 10.1361032 + }, + "geometry": [ + { "lat": 56.0910430, "lon": 10.1361032 }, + { "lat": 56.0909910, "lon": 10.1360761 }, + { "lat": 56.0909972, "lon": 10.1360382 }, + { "lat": 56.0910491, "lon": 10.1360653 }, + { "lat": 56.0910430, "lon": 10.1361032 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1502250443, + "bounds": { + "minlat": 56.0909424, + "minlon": 10.1360122, + "maxlat": 56.0909972, + "maxlon": 10.1360761 + }, + "geometry": [ + { "lat": 56.0909910, "lon": 10.1360761 }, + { "lat": 56.0909424, "lon": 10.1360486 }, + { "lat": 56.0909492, "lon": 10.1360122 }, + { "lat": 56.0909972, "lon": 10.1360382 }, + { "lat": 56.0909910, "lon": 10.1360761 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1502254306, + "bounds": { + "minlat": 56.0907533, + "minlon": 10.1366913, + "maxlat": 56.0907894, + "maxlon": 10.1368079 + }, + "geometry": [ + { "lat": 56.0907533, "lon": 10.1367432 }, + { "lat": 56.0907629, "lon": 10.1366913 }, + { "lat": 56.0907894, "lon": 10.1367620 }, + { "lat": 56.0907812, "lon": 10.1368079 }, + { "lat": 56.0907533, "lon": 10.1367432 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1502254308, + "bounds": { + "minlat": 56.0904741, + "minlon": 10.1378529, + "maxlat": 56.0905252, + "maxlon": 10.1380242 + }, + "geometry": [ + { "lat": 56.0905252, "lon": 10.1378660 }, + { "lat": 56.0905017, "lon": 10.1378529 }, + { "lat": 56.0904875, "lon": 10.1379317 }, + { "lat": 56.0904741, "lon": 10.1380114 }, + { "lat": 56.0904977, "lon": 10.1380242 }, + { "lat": 56.0905111, "lon": 10.1379445 }, + { "lat": 56.0905252, "lon": 10.1378660 } + ], + "tags": { + "amenity": "parking", + "capacity": "2", + "capacity:disabled": "2", + "parking": "street_side" + } +}, +{ + "type": "way", + "id": 1502254309, + "bounds": { + "minlat": 56.0904875, + "minlon": 10.1378529, + "maxlat": 56.0905252, + "maxlon": 10.1379445 + }, + "geometry": [ + { "lat": 56.0905111, "lon": 10.1379445 }, + { "lat": 56.0904875, "lon": 10.1379317 }, + { "lat": 56.0905017, "lon": 10.1378529 }, + { "lat": 56.0905252, "lon": 10.1378660 }, + { "lat": 56.0905111, "lon": 10.1379445 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1502254310, + "bounds": { + "minlat": 56.0904741, + "minlon": 10.1379317, + "maxlat": 56.0905111, + "maxlon": 10.1380242 + }, + "geometry": [ + { "lat": 56.0905111, "lon": 10.1379445 }, + { "lat": 56.0904977, "lon": 10.1380242 }, + { "lat": 56.0904741, "lon": 10.1380114 }, + { "lat": 56.0904875, "lon": 10.1379317 }, + { "lat": 56.0905111, "lon": 10.1379445 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1502254313, + "bounds": { + "minlat": 56.0913304, + "minlon": 10.1366883, + "maxlat": 56.0913734, + "maxlon": 10.1367749 + }, + "geometry": [ + { "lat": 56.0913426, "lon": 10.1366883 }, + { "lat": 56.0913734, "lon": 10.1367057 }, + { "lat": 56.0913613, "lon": 10.1367749 }, + { "lat": 56.0913304, "lon": 10.1367574 }, + { "lat": 56.0913426, "lon": 10.1366883 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1502255093, + "bounds": { + "minlat": 56.1236558, + "minlon": 10.1520969, + "maxlat": 56.1237184, + "maxlon": 10.1522045 + }, + "geometry": [ + { "lat": 56.1236962, "lon": 10.1520969 }, + { "lat": 56.1236558, "lon": 10.1521484 }, + { "lat": 56.1236780, "lon": 10.1522045 }, + { "lat": 56.1237184, "lon": 10.1521531 }, + { "lat": 56.1236962, "lon": 10.1520969 } + ], + "tags": { + "amenity": "parking_space", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1502255094, + "bounds": { + "minlat": 56.1236780, + "minlon": 10.1521531, + "maxlat": 56.1237387, + "maxlon": 10.1522559 + }, + "geometry": [ + { "lat": 56.1237184, "lon": 10.1521531 }, + { "lat": 56.1237387, "lon": 10.1522052 }, + { "lat": 56.1236986, "lon": 10.1522559 }, + { "lat": 56.1236780, "lon": 10.1522045 }, + { "lat": 56.1237184, "lon": 10.1521531 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1502255095, + "bounds": { + "minlat": 56.1245924, + "minlon": 10.1539875, + "maxlat": 56.1246449, + "maxlon": 10.1540749 + }, + "geometry": [ + { "lat": 56.1245924, "lon": 10.1540291 }, + { "lat": 56.1246088, "lon": 10.1540749 }, + { "lat": 56.1246449, "lon": 10.1540332 }, + { "lat": 56.1246285, "lon": 10.1539875 }, + { "lat": 56.1245924, "lon": 10.1540291 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1502255096, + "bounds": { + "minlat": 56.1246361, + "minlon": 10.1541090, + "maxlat": 56.1246891, + "maxlon": 10.1541972 + }, + "geometry": [ + { "lat": 56.1246361, "lon": 10.1541509 }, + { "lat": 56.1246526, "lon": 10.1541972 }, + { "lat": 56.1246891, "lon": 10.1541554 }, + { "lat": 56.1246726, "lon": 10.1541090 }, + { "lat": 56.1246361, "lon": 10.1541509 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1502486422, + "bounds": { + "minlat": 56.1726994, + "minlon": 10.2178553, + "maxlat": 56.1727289, + "maxlon": 10.2179660 + }, + "geometry": [ + { "lat": 56.1727289, "lon": 10.2178617 }, + { "lat": 56.1727113, "lon": 10.2178553 }, + { "lat": 56.1726994, "lon": 10.2179595 }, + { "lat": 56.1727171, "lon": 10.2179660 }, + { "lat": 56.1727289, "lon": 10.2178617 } + ], + "tags": { + "amenity": "parking", + "capacity": "1", + "capacity:disabled": "1", + "disabled": "designated", + "orientation": "parallel", + "parking": "street_side" + } +}, +{ + "type": "way", + "id": 1502488241, + "bounds": { + "minlat": 56.1728448, + "minlon": 10.2161263, + "maxlat": 56.1728795, + "maxlon": 10.2162213 + }, + "geometry": [ + { "lat": 56.1728795, "lon": 10.2161351 }, + { "lat": 56.1728547, "lon": 10.2161263 }, + { "lat": 56.1728448, "lon": 10.2162125 }, + { "lat": 56.1728703, "lon": 10.2162213 }, + { "lat": 56.1728795, "lon": 10.2161351 } + ], + "tags": { + "amenity": "parking", + "capacity": "1", + "capacity:disabled": "1", + "disabled": "designated", + "orientation": "parallel", + "parking": "street_side" + } +}, +{ + "type": "way", + "id": 1502490850, + "bounds": { + "minlat": 56.1718453, + "minlon": 10.2152846, + "maxlat": 56.1718734, + "maxlon": 10.2153667 + }, + "geometry": [ + { "lat": 56.1718453, "lon": 10.2153592 }, + { "lat": 56.1718644, "lon": 10.2153667 }, + { "lat": 56.1718734, "lon": 10.2152921 }, + { "lat": 56.1718544, "lon": 10.2152846 }, + { "lat": 56.1718453, "lon": 10.2153592 } + ], + "tags": { + "amenity": "parking", + "capacity": "1", + "capacity:disabled": "1", + "disabled": "designated", + "orientation": "parallel", + "parking": "street_side" + } +}, +{ + "type": "way", + "id": 1502502635, + "bounds": { + "minlat": 56.1706249, + "minlon": 10.2122800, + "maxlat": 56.1706758, + "maxlon": 10.2124869 + }, + "geometry": [ + { "lat": 56.1706758, "lon": 10.2122898 }, + { "lat": 56.1706572, "lon": 10.2122800 }, + { "lat": 56.1706249, "lon": 10.2124771 }, + { "lat": 56.1706436, "lon": 10.2124869 }, + { "lat": 56.1706758, "lon": 10.2122898 } + ], + "tags": { + "amenity": "parking", + "capacity": "2", + "capacity:disabled": "2", + "disabled": "designated", + "orientation": "parallel", + "parking": "street_side" + } +}, +{ + "type": "way", + "id": 1502553136, + "bounds": { + "minlat": 56.1853572, + "minlon": 10.2052853, + "maxlat": 56.1854082, + "maxlon": 10.2053941 + }, + "geometry": [ + { "lat": 56.1853572, "lon": 10.2053105 }, + { "lat": 56.1853764, "lon": 10.2052853 }, + { "lat": 56.1854082, "lon": 10.2053664 }, + { "lat": 56.1853893, "lon": 10.2053941 }, + { "lat": 56.1853572, "lon": 10.2053105 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1502553659, + "bounds": { + "minlat": 56.1857785, + "minlon": 10.2064491, + "maxlat": 56.1858220, + "maxlon": 10.2065606 + }, + "geometry": [ + { "lat": 56.1857953, "lon": 10.2065606 }, + { "lat": 56.1858220, "lon": 10.2065456 }, + { "lat": 56.1858052, "lon": 10.2064491 }, + { "lat": 56.1857785, "lon": 10.2064640 }, + { "lat": 56.1857953, "lon": 10.2065606 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1502556371, + "bounds": { + "minlat": 56.1782915, + "minlon": 10.1994588, + "maxlat": 56.1783235, + "maxlon": 10.1995404 + }, + "geometry": [ + { "lat": 56.1783235, "lon": 10.1994661 }, + { "lat": 56.1783056, "lon": 10.1994588 }, + { "lat": 56.1782915, "lon": 10.1995308 }, + { "lat": 56.1783100, "lon": 10.1995404 }, + { "lat": 56.1783235, "lon": 10.1994661 } + ], + "tags": { + "amenity": "parking", + "capacity": "1", + "capacity:disabled": "1", + "disabled": "designated", + "orientation": "parallel", + "parking": "street_side" + } +}, +{ + "type": "way", + "id": 1504203278, + "bounds": { + "minlat": 56.1827569, + "minlon": 10.0995066, + "maxlat": 56.1828074, + "maxlon": 10.0995912 + }, + "geometry": [ + { "lat": 56.1827569, "lon": 10.0995484 }, + { "lat": 56.1827727, "lon": 10.0995066 }, + { "lat": 56.1828074, "lon": 10.0995493 }, + { "lat": 56.1827920, "lon": 10.0995912 }, + { "lat": 56.1827569, "lon": 10.0995484 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1506069063, + "bounds": { + "minlat": 56.1738792, + "minlon": 10.1803770, + "maxlat": 56.1739300, + "maxlon": 10.1804496 + }, + "geometry": [ + { "lat": 56.1739209, "lon": 10.1803770 }, + { "lat": 56.1739300, "lon": 10.1804037 }, + { "lat": 56.1738884, "lon": 10.1804496 }, + { "lat": 56.1738792, "lon": 10.1804229 }, + { "lat": 56.1739209, "lon": 10.1803770 } + ], + "tags": { + "amenity": "parking", + "capacity": "1", + "capacity:disabled": "1", + "disabled": "designated", + "orientation": "parallel", + "parking": "street_side" + } +}, +{ + "type": "way", + "id": 1506069388, + "bounds": { + "minlat": 56.1729899, + "minlon": 10.1811836, + "maxlat": 56.1730317, + "maxlon": 10.1812724 + }, + "geometry": [ + { "lat": 56.1730083, "lon": 10.1811836 }, + { "lat": 56.1729899, "lon": 10.1812037 }, + { "lat": 56.1730133, "lon": 10.1812724 }, + { "lat": 56.1730317, "lon": 10.1812523 }, + { "lat": 56.1730083, "lon": 10.1811836 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1523410301, + "bounds": { + "minlat": 56.1470725, + "minlon": 10.2108000, + "maxlat": 56.1471264, + "maxlon": 10.2108883 + }, + "geometry": [ + { "lat": 56.1470725, "lon": 10.2108501 }, + { "lat": 56.1471095, "lon": 10.2108883 }, + { "lat": 56.1471264, "lon": 10.2108360 }, + { "lat": 56.1470881, "lon": 10.2108000 }, + { "lat": 56.1470761, "lon": 10.2108394 }, + { "lat": 56.1470725, "lon": 10.2108501 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1523410302, + "bounds": { + "minlat": 56.1470209, + "minlon": 10.2107987, + "maxlat": 56.1470761, + "maxlon": 10.2108907 + }, + "geometry": [ + { "lat": 56.1470725, "lon": 10.2108501 }, + { "lat": 56.1470592, "lon": 10.2108907 }, + { "lat": 56.1470209, "lon": 10.2108500 }, + { "lat": 56.1470377, "lon": 10.2107987 }, + { "lat": 56.1470761, "lon": 10.2108394 }, + { "lat": 56.1470725, "lon": 10.2108501 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1523410303, + "bounds": { + "minlat": 56.1469206, + "minlon": 10.2107221, + "maxlat": 56.1469750, + "maxlon": 10.2108119 + }, + "geometry": [ + { "lat": 56.1469206, "lon": 10.2107724 }, + { "lat": 56.1469367, "lon": 10.2107221 }, + { "lat": 56.1469750, "lon": 10.2107616 }, + { "lat": 56.1469590, "lon": 10.2108119 }, + { "lat": 56.1469206, "lon": 10.2107724 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1523803081, + "bounds": { + "minlat": 56.1712362, + "minlon": 10.2193794, + "maxlat": 56.1712899, + "maxlon": 10.2195306 + }, + "geometry": [ + { "lat": 56.1712362, "lon": 10.2195306 }, + { "lat": 56.1712813, "lon": 10.2194510 }, + { "lat": 56.1712899, "lon": 10.2193794 }, + { "lat": 56.1712437, "lon": 10.2194650 }, + { "lat": 56.1712362, "lon": 10.2195306 } + ], + "tags": { + "amenity": "parking", + "capacity": "1", + "capacity:disabled": "1", + "disabled": "designated", + "parking": "street_side" + } +}, +{ + "type": "way", + "id": 1525993211, + "bounds": { + "minlat": 56.1417975, + "minlon": 10.1944752, + "maxlat": 56.1418487, + "maxlon": 10.1945191 + }, + "geometry": [ + { "lat": 56.1418465, "lon": 10.1944752 }, + { "lat": 56.1418487, "lon": 10.1945090 }, + { "lat": 56.1417997, "lon": 10.1945191 }, + { "lat": 56.1417975, "lon": 10.1944852 }, + { "lat": 56.1418465, "lon": 10.1944752 } + ], + "tags": { + "amenity": "parking", + "capacity": "1", + "capacity:disabled": "1", + "disabled": "designated", + "orientation": "parallel", + "parking": "street_side" + } +}, +{ + "type": "way", + "id": 1525995579, + "bounds": { + "minlat": 56.1440106, + "minlon": 10.1951041, + "maxlat": 56.1440664, + "maxlon": 10.1951505 + }, + "geometry": [ + { "lat": 56.1440106, "lon": 10.1951151 }, + { "lat": 56.1440128, "lon": 10.1951505 }, + { "lat": 56.1440664, "lon": 10.1951395 }, + { "lat": 56.1440642, "lon": 10.1951041 }, + { "lat": 56.1440106, "lon": 10.1951151 } + ], + "tags": { + "amenity": "parking", + "capacity": "1", + "capacity:disabled": "1", + "disabled": "designated", + "orientation": "parallel", + "parking": "street_side" + } +}, +{ + "type": "way", + "id": 1525996955, + "bounds": { + "minlat": 56.1456263, + "minlon": 10.1873179, + "maxlat": 56.1456678, + "maxlon": 10.1873896 + }, + "geometry": [ + { "lat": 56.1456678, "lon": 10.1873527 }, + { "lat": 56.1456413, "lon": 10.1873896 }, + { "lat": 56.1456263, "lon": 10.1873548 }, + { "lat": 56.1456528, "lon": 10.1873179 }, + { "lat": 56.1456678, "lon": 10.1873527 } + ], + "tags": { + "access": "yes", + "amenity": "parking", + "capacity": "1", + "capacity:disabled": "1", + "disabled": "designated", + "orientation": "perpendicular", + "parking": "street_side" + } +}, +{ + "type": "way", + "id": 1525997869, + "bounds": { + "minlat": 56.1433434, + "minlon": 10.1872179, + "maxlat": 56.1433978, + "maxlon": 10.1873152 + }, + "geometry": [ + { "lat": 56.1433434, "lon": 10.1872508 }, + { "lat": 56.1433798, "lon": 10.1873152 }, + { "lat": 56.1433978, "lon": 10.1872818 }, + { "lat": 56.1433612, "lon": 10.1872179 }, + { "lat": 56.1433434, "lon": 10.1872508 } + ], + "tags": { + "access": "yes", + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1525998781, + "bounds": { + "minlat": 56.1438873, + "minlon": 10.1844113, + "maxlat": 56.1439345, + "maxlon": 10.1845426 + }, + "geometry": [ + { "lat": 56.1439265, "lon": 10.1844113 }, + { "lat": 56.1438873, "lon": 10.1844195 }, + { "lat": 56.1438953, "lon": 10.1845426 }, + { "lat": 56.1439345, "lon": 10.1845344 }, + { "lat": 56.1439313, "lon": 10.1844861 }, + { "lat": 56.1439265, "lon": 10.1844113 } + ], + "tags": { + "access": "yes", + "amenity": "parking", + "capacity": "1", + "capacity:disabled": "1", + "disabled": "designated", + "orientation": "perpendicular", + "parking": "street_side" + } +}, +{ + "type": "way", + "id": 1525999087, + "bounds": { + "minlat": 56.1450906, + "minlon": 10.1841764, + "maxlat": 56.1451420, + "maxlon": 10.1842353 + }, + "geometry": [ + { "lat": 56.1450939, "lon": 10.1842353 }, + { "lat": 56.1451420, "lon": 10.1842238 }, + { "lat": 56.1451390, "lon": 10.1841764 }, + { "lat": 56.1450906, "lon": 10.1841879 }, + { "lat": 56.1450939, "lon": 10.1842353 } + ], + "tags": { + "access": "yes", + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1527761608, + "bounds": { + "minlat": 56.1260369, + "minlon": 10.1572757, + "maxlat": 56.1260956, + "maxlon": 10.1573780 + }, + "geometry": [ + { "lat": 56.1260369, "lon": 10.1573302 }, + { "lat": 56.1260601, "lon": 10.1573780 }, + { "lat": 56.1260956, "lon": 10.1573232 }, + { "lat": 56.1260740, "lon": 10.1572757 }, + { "lat": 56.1260369, "lon": 10.1573302 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1527761609, + "bounds": { + "minlat": 56.1260601, + "minlon": 10.1573232, + "maxlat": 56.1261218, + "maxlon": 10.1574326 + }, + "geometry": [ + { "lat": 56.1260601, "lon": 10.1573780 }, + { "lat": 56.1260862, "lon": 10.1574326 }, + { "lat": 56.1261218, "lon": 10.1573778 }, + { "lat": 56.1260956, "lon": 10.1573232 }, + { "lat": 56.1260601, "lon": 10.1573780 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1528708670, + "bounds": { + "minlat": 56.1124611, + "minlon": 10.1923621, + "maxlat": 56.1125027, + "maxlon": 10.1924172 + }, + "geometry": [ + { "lat": 56.1124611, "lon": 10.1924172 }, + { "lat": 56.1125022, "lon": 10.1924165 }, + { "lat": 56.1125027, "lon": 10.1923628 }, + { "lat": 56.1124614, "lon": 10.1923621 }, + { "lat": 56.1124611, "lon": 10.1924172 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1528708671, + "bounds": { + "minlat": 56.1124614, + "minlon": 10.1923043, + "maxlat": 56.1125027, + "maxlon": 10.1923628 + }, + "geometry": [ + { "lat": 56.1125024, "lon": 10.1923043 }, + { "lat": 56.1125027, "lon": 10.1923628 }, + { "lat": 56.1124614, "lon": 10.1923621 }, + { "lat": 56.1124617, "lon": 10.1923043 }, + { "lat": 56.1125024, "lon": 10.1923043 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1528708672, + "bounds": { + "minlat": 56.1124617, + "minlon": 10.1922468, + "maxlat": 56.1125027, + "maxlon": 10.1923043 + }, + "geometry": [ + { "lat": 56.1125024, "lon": 10.1923043 }, + { "lat": 56.1125027, "lon": 10.1922482 }, + { "lat": 56.1124620, "lon": 10.1922468 }, + { "lat": 56.1124617, "lon": 10.1923043 }, + { "lat": 56.1125024, "lon": 10.1923043 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1528708673, + "bounds": { + "minlat": 56.1125675, + "minlon": 10.1921876, + "maxlat": 56.1126584, + "maxlon": 10.1922655 + }, + "geometry": [ + { "lat": 56.1125675, "lon": 10.1922642 }, + { "lat": 56.1126584, "lon": 10.1922655 }, + { "lat": 56.1126576, "lon": 10.1921896 }, + { "lat": 56.1125675, "lon": 10.1921876 }, + { "lat": 56.1125675, "lon": 10.1922642 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1528708674, + "bounds": { + "minlat": 56.1125675, + "minlon": 10.1921124, + "maxlat": 56.1126580, + "maxlon": 10.1921896 + }, + "geometry": [ + { "lat": 56.1126580, "lon": 10.1921143 }, + { "lat": 56.1125675, "lon": 10.1921124 }, + { "lat": 56.1125675, "lon": 10.1921876 }, + { "lat": 56.1126576, "lon": 10.1921896 }, + { "lat": 56.1126580, "lon": 10.1921143 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1530316999, + "bounds": { + "minlat": 56.1603473, + "minlon": 10.1925981, + "maxlat": 56.1603993, + "maxlon": 10.1927528 + }, + "geometry": [ + { "lat": 56.1603993, "lon": 10.1926241 }, + { "lat": 56.1603621, "lon": 10.1925981 }, + { "lat": 56.1603500, "lon": 10.1926502 }, + { "lat": 56.1603473, "lon": 10.1927050 }, + { "lat": 56.1603551, "lon": 10.1927528 }, + { "lat": 56.1603962, "lon": 10.1927317 }, + { "lat": 56.1603993, "lon": 10.1926241 } + ], + "tags": { + "amenity": "parking", + "capacity": "3", + "capacity:disabled": "3", + "disabled": "designated", + "parking": "street_side" + } +}, +{ + "type": "way", + "id": 1530317000, + "bounds": { + "minlat": 56.1604702, + "minlon": 10.1925398, + "maxlat": 56.1605309, + "maxlon": 10.1926537 + }, + "geometry": [ + { "lat": 56.1604796, "lon": 10.1925398 }, + { "lat": 56.1605141, "lon": 10.1925784 }, + { "lat": 56.1605309, "lon": 10.1926256 }, + { "lat": 56.1604980, "lon": 10.1926537 }, + { "lat": 56.1604702, "lon": 10.1926178 }, + { "lat": 56.1604796, "lon": 10.1925398 } + ], + "tags": { + "amenity": "parking", + "capacity": "2", + "capacity:disabled": "2", + "disabled": "designated", + "parking": "street_side" + } +}, +{ + "type": "way", + "id": 1530317020, + "bounds": { + "minlat": 56.1610112, + "minlon": 10.1975584, + "maxlat": 56.1610468, + "maxlon": 10.1976492 + }, + "geometry": [ + { "lat": 56.1610317, "lon": 10.1975584 }, + { "lat": 56.1610112, "lon": 10.1975712 }, + { "lat": 56.1610263, "lon": 10.1976492 }, + { "lat": 56.1610468, "lon": 10.1976364 }, + { "lat": 56.1610317, "lon": 10.1975584 } + ], + "tags": { + "amenity": "parking", + "capacity": "1", + "capacity:disabled": "1", + "parking": "street_side" + } +}, +{ + "type": "way", + "id": 1530317721, + "bounds": { + "minlat": 56.1589914, + "minlon": 10.1985464, + "maxlat": 56.1590359, + "maxlon": 10.1986240 + }, + "geometry": [ + { "lat": 56.1589914, "lon": 10.1986046 }, + { "lat": 56.1590016, "lon": 10.1986240 }, + { "lat": 56.1590359, "lon": 10.1985657 }, + { "lat": 56.1590257, "lon": 10.1985464 }, + { "lat": 56.1589914, "lon": 10.1986046 } + ], + "tags": { + "amenity": "parking", + "capacity": "1", + "capacity:disabled": "1", + "disabled": "designated", + "orientation": "parallel", + "parking": "street_side" + } +}, +{ + "type": "way", + "id": 1530317722, + "bounds": { + "minlat": 56.1588890, + "minlon": 10.1987225, + "maxlat": 56.1589334, + "maxlon": 10.1988017 + }, + "geometry": [ + { "lat": 56.1588890, "lon": 10.1987797 }, + { "lat": 56.1589011, "lon": 10.1988017 }, + { "lat": 56.1589334, "lon": 10.1987444 }, + { "lat": 56.1589213, "lon": 10.1987225 }, + { "lat": 56.1588890, "lon": 10.1987797 } + ], + "tags": { + "amenity": "parking", + "capacity": "1", + "capacity:disabled": "1", + "disabled": "designated", + "orientation": "parallel", + "parking": "street_side" + } +}, +{ + "type": "way", + "id": 1530318672, + "bounds": { + "minlat": 56.1550827, + "minlon": 10.1986680, + "maxlat": 56.1551370, + "maxlon": 10.1987652 + }, + "geometry": [ + { "lat": 56.1550827, "lon": 10.1986948 }, + { "lat": 56.1550975, "lon": 10.1986680 }, + { "lat": 56.1551370, "lon": 10.1987383 }, + { "lat": 56.1551221, "lon": 10.1987652 }, + { "lat": 56.1550827, "lon": 10.1986948 } + ], + "tags": { + "amenity": "parking", + "capacity": "1", + "capacity:disabled": "1", + "disabled": "designated", + "orientation": "parallel", + "parking": "street_side" + } +}, +{ + "type": "way", + "id": 1530318834, + "bounds": { + "minlat": 56.1585566, + "minlon": 10.2029481, + "maxlat": 56.1585899, + "maxlon": 10.2030290 + }, + "geometry": [ + { "lat": 56.1585722, "lon": 10.2030290 }, + { "lat": 56.1585899, "lon": 10.2030158 }, + { "lat": 56.1585743, "lon": 10.2029481 }, + { "lat": 56.1585566, "lon": 10.2029613 }, + { "lat": 56.1585722, "lon": 10.2030290 } + ], + "tags": { + "amenity": "parking", + "capacity": "1", + "capacity:disabled": "1", + "disabled": "designated", + "orientation": "parallel", + "parking": "street_side" + } +}, +{ + "type": "way", + "id": 1530766467, + "bounds": { + "minlat": 56.1032549, + "minlon": 10.1445282, + "maxlat": 56.1033050, + "maxlon": 10.1446193 + }, + "geometry": [ + { "lat": 56.1032785, "lon": 10.1446193 }, + { "lat": 56.1033050, "lon": 10.1445660 }, + { "lat": 56.1032814, "lon": 10.1445282 }, + { "lat": 56.1032549, "lon": 10.1445815 }, + { "lat": 56.1032785, "lon": 10.1446193 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1530766468, + "bounds": { + "minlat": 56.1032785, + "minlon": 10.1445660, + "maxlat": 56.1033290, + "maxlon": 10.1446575 + }, + "geometry": [ + { "lat": 56.1033050, "lon": 10.1445660 }, + { "lat": 56.1033290, "lon": 10.1446045 }, + { "lat": 56.1033020, "lon": 10.1446575 }, + { "lat": 56.1032785, "lon": 10.1446193 }, + { "lat": 56.1033050, "lon": 10.1445660 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1531182091, + "bounds": { + "minlat": 56.1151591, + "minlon": 10.1343220, + "maxlat": 56.1152144, + "maxlon": 10.1344153 + }, + "geometry": [ + { "lat": 56.1152144, "lon": 10.1343825 }, + { "lat": 56.1152033, "lon": 10.1343220 }, + { "lat": 56.1151591, "lon": 10.1343490 }, + { "lat": 56.1151731, "lon": 10.1344153 }, + { "lat": 56.1152144, "lon": 10.1343825 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1535142351, + "bounds": { + "minlat": 56.1652074, + "minlon": 10.2263777, + "maxlat": 56.1652807, + "maxlon": 10.2265021 + }, + "geometry": [ + { "lat": 56.1652074, "lon": 10.2264245 }, + { "lat": 56.1652587, "lon": 10.2265021 }, + { "lat": 56.1652807, "lon": 10.2264552 }, + { "lat": 56.1652293, "lon": 10.2263777 }, + { "lat": 56.1652074, "lon": 10.2264245 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "fee": "yes", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1535142352, + "bounds": { + "minlat": 56.1652293, + "minlon": 10.2263291, + "maxlat": 56.1653031, + "maxlon": 10.2264552 + }, + "geometry": [ + { "lat": 56.1652293, "lon": 10.2263777 }, + { "lat": 56.1652807, "lon": 10.2264552 }, + { "lat": 56.1653031, "lon": 10.2264078 }, + { "lat": 56.1652855, "lon": 10.2263809 }, + { "lat": 56.1652519, "lon": 10.2263291 }, + { "lat": 56.1652293, "lon": 10.2263777 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "fee": "yes", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1535146951, + "bounds": { + "minlat": 56.1866923, + "minlon": 10.1878833, + "maxlat": 56.1867486, + "maxlon": 10.1880498 + }, + "geometry": [ + { "lat": 56.1866923, "lon": 10.1878991 }, + { "lat": 56.1867280, "lon": 10.1880498 }, + { "lat": 56.1867486, "lon": 10.1880340 }, + { "lat": 56.1867129, "lon": 10.1878833 }, + { "lat": 56.1866923, "lon": 10.1878991 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1535146952, + "bounds": { + "minlat": 56.1866417, + "minlon": 10.1876743, + "maxlat": 56.1866916, + "maxlon": 10.1878061 + }, + "geometry": [ + { "lat": 56.1866417, "lon": 10.1876915 }, + { "lat": 56.1866702, "lon": 10.1878061 }, + { "lat": 56.1866916, "lon": 10.1877889 }, + { "lat": 56.1866631, "lon": 10.1876743 }, + { "lat": 56.1866417, "lon": 10.1876915 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1535146953, + "bounds": { + "minlat": 56.1865696, + "minlon": 10.1877850, + "maxlat": 56.1866106, + "maxlon": 10.1878791 + }, + "geometry": [ + { "lat": 56.1865696, "lon": 10.1878028 }, + { "lat": 56.1865890, "lon": 10.1878791 }, + { "lat": 56.1866106, "lon": 10.1878613 }, + { "lat": 56.1865912, "lon": 10.1877850 }, + { "lat": 56.1865696, "lon": 10.1878028 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1535173941, + "bounds": { + "minlat": 56.0373842, + "minlon": 10.0835391, + "maxlat": 56.0374395, + "maxlon": 10.0836188 + }, + "geometry": [ + { "lat": 56.0374395, "lon": 10.0835662 }, + { "lat": 56.0373939, "lon": 10.0835391 }, + { "lat": 56.0373842, "lon": 10.0835918 }, + { "lat": 56.0374296, "lon": 10.0836188 }, + { "lat": 56.0374395, "lon": 10.0835662 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1535173942, + "bounds": { + "minlat": 56.0373753, + "minlon": 10.0835918, + "maxlat": 56.0374296, + "maxlon": 10.0836673 + }, + "geometry": [ + { "lat": 56.0374296, "lon": 10.0836188 }, + { "lat": 56.0373842, "lon": 10.0835918 }, + { "lat": 56.0373753, "lon": 10.0836397 }, + { "lat": 56.0374204, "lon": 10.0836673 }, + { "lat": 56.0374296, "lon": 10.0836188 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1542835256, + "bounds": { + "minlat": 56.1626511, + "minlon": 10.1338086, + "maxlat": 56.1627021, + "maxlon": 10.1338672 + }, + "geometry": [ + { "lat": 56.1626547, "lon": 10.1338672 }, + { "lat": 56.1627021, "lon": 10.1338553 }, + { "lat": 56.1626984, "lon": 10.1338086 }, + { "lat": 56.1626511, "lon": 10.1338205 }, + { "lat": 56.1626547, "lon": 10.1338672 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1542835257, + "bounds": { + "minlat": 56.1626476, + "minlon": 10.1337627, + "maxlat": 56.1626984, + "maxlon": 10.1338205 + }, + "geometry": [ + { "lat": 56.1626984, "lon": 10.1338086 }, + { "lat": 56.1626947, "lon": 10.1337627 }, + { "lat": 56.1626476, "lon": 10.1337740 }, + { "lat": 56.1626511, "lon": 10.1338205 }, + { "lat": 56.1626984, "lon": 10.1338086 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1545847758, + "bounds": { + "minlat": 56.2759307, + "minlon": 10.3149898, + "maxlat": 56.2759985, + "maxlon": 10.3151366 + }, + "geometry": [ + { "lat": 56.2759985, "lon": 10.3150220 }, + { "lat": 56.2759772, "lon": 10.3151021 }, + { "lat": 56.2759680, "lon": 10.3151366 }, + { "lat": 56.2759307, "lon": 10.3151044 }, + { "lat": 56.2759413, "lon": 10.3150645 }, + { "lat": 56.2759612, "lon": 10.3149898 }, + { "lat": 56.2759985, "lon": 10.3150220 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1545847759, + "bounds": { + "minlat": 56.2758944, + "minlon": 10.3149496, + "maxlat": 56.2759418, + "maxlon": 10.3150462 + }, + "geometry": [ + { "lat": 56.2759418, "lon": 10.3149745 }, + { "lat": 56.2759215, "lon": 10.3150462 }, + { "lat": 56.2758944, "lon": 10.3150214 }, + { "lat": 56.2759146, "lon": 10.3149496 }, + { "lat": 56.2759418, "lon": 10.3149745 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1545848761, + "bounds": { + "minlat": 56.2760761, + "minlon": 10.3159819, + "maxlat": 56.2761254, + "maxlon": 10.3160779 + }, + "geometry": [ + { "lat": 56.2761254, "lon": 10.3160105 }, + { "lat": 56.2761045, "lon": 10.3160779 }, + { "lat": 56.2760761, "lon": 10.3160493 }, + { "lat": 56.2760970, "lon": 10.3159819 }, + { "lat": 56.2761254, "lon": 10.3160105 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1545848762, + "bounds": { + "minlat": 56.2760153, + "minlon": 10.3159208, + "maxlat": 56.2760970, + "maxlon": 10.3160493 + }, + "geometry": [ + { "lat": 56.2760970, "lon": 10.3159819 }, + { "lat": 56.2760761, "lon": 10.3160493 }, + { "lat": 56.2760153, "lon": 10.3159875 }, + { "lat": 56.2760360, "lon": 10.3159208 }, + { "lat": 56.2760970, "lon": 10.3159819 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1546927438, + "bounds": { + "minlat": 56.1194143, + "minlon": 10.1818885, + "maxlat": 56.1194611, + "maxlon": 10.1819822 + }, + "geometry": [ + { "lat": 56.1194143, "lon": 10.1819113 }, + { "lat": 56.1194318, "lon": 10.1819822 }, + { "lat": 56.1194611, "lon": 10.1819590 }, + { "lat": 56.1194431, "lon": 10.1818885 }, + { "lat": 56.1194143, "lon": 10.1819113 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1555040008, + "bounds": { + "minlat": 56.1731411, + "minlon": 10.2087502, + "maxlat": 56.1731766, + "maxlon": 10.2088197 + }, + "geometry": [ + { "lat": 56.1731443, "lon": 10.2088180 }, + { "lat": 56.1731675, "lon": 10.2088197 }, + { "lat": 56.1731766, "lon": 10.2087551 }, + { "lat": 56.1731411, "lon": 10.2087502 }, + { "lat": 56.1731443, "lon": 10.2088180 } + ], + "tags": { + "amenity": "parking", + "capacity": "1", + "capacity:disabled": "1", + "disabled": "designated", + "orientation": "perpendicular", + "parking": "street_side" + } +}, +{ + "type": "way", + "id": 1555040009, + "bounds": { + "minlat": 56.1730855, + "minlon": 10.2091814, + "maxlat": 56.1731335, + "maxlon": 10.2092506 + }, + "geometry": [ + { "lat": 56.1730855, "lon": 10.2092133 }, + { "lat": 56.1730952, "lon": 10.2092506 }, + { "lat": 56.1731335, "lon": 10.2092186 }, + { "lat": 56.1731239, "lon": 10.2091814 }, + { "lat": 56.1730855, "lon": 10.2092133 } + ], + "tags": { + "amenity": "parking", + "capacity": "1", + "capacity:disabled": "1", + "disabled": "designated" + } +}, +{ + "type": "way", + "id": 1555041330, + "bounds": { + "minlat": 56.1664534, + "minlon": 10.2132835, + "maxlat": 56.1666157, + "maxlon": 10.2134602 + }, + "geometry": [ + { "lat": 56.1665995, "lon": 10.2134602 }, + { "lat": 56.1666157, "lon": 10.2133858 }, + { "lat": 56.1665877, "lon": 10.2133662 }, + { "lat": 56.1664696, "lon": 10.2132835 }, + { "lat": 56.1664534, "lon": 10.2133579 }, + { "lat": 56.1665722, "lon": 10.2134411 }, + { "lat": 56.1665995, "lon": 10.2134602 } + ], + "tags": { + "amenity": "parking", + "capacity:disabled": "1", + "parking": "street_side" + } +}, +{ + "type": "way", + "id": 1555041331, + "bounds": { + "minlat": 56.1665722, + "minlon": 10.2133662, + "maxlat": 56.1666157, + "maxlon": 10.2134602 + }, + "geometry": [ + { "lat": 56.1665722, "lon": 10.2134411 }, + { "lat": 56.1665877, "lon": 10.2133662 }, + { "lat": 56.1666157, "lon": 10.2133858 }, + { "lat": 56.1665995, "lon": 10.2134602 }, + { "lat": 56.1665722, "lon": 10.2134411 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1555041332, + "bounds": { + "minlat": 56.1666521, + "minlon": 10.2133818, + "maxlat": 56.1667198, + "maxlon": 10.2135485 + }, + "geometry": [ + { "lat": 56.1666521, "lon": 10.2135225 }, + { "lat": 56.1666893, "lon": 10.2135485 }, + { "lat": 56.1667021, "lon": 10.2134892 }, + { "lat": 56.1667198, "lon": 10.2134079 }, + { "lat": 56.1666826, "lon": 10.2133818 }, + { "lat": 56.1666649, "lon": 10.2134635 }, + { "lat": 56.1666521, "lon": 10.2135225 } + ], + "tags": { + "amenity": "parking", + "capacity:disabled": "1" + } +}, +{ + "type": "way", + "id": 1555041333, + "bounds": { + "minlat": 56.1666521, + "minlon": 10.2134635, + "maxlat": 56.1667021, + "maxlon": 10.2135485 + }, + "geometry": [ + { "lat": 56.1666521, "lon": 10.2135225 }, + { "lat": 56.1666893, "lon": 10.2135485 }, + { "lat": 56.1667021, "lon": 10.2134892 }, + { "lat": 56.1666649, "lon": 10.2134635 }, + { "lat": 56.1666521, "lon": 10.2135225 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1555041334, + "bounds": { + "minlat": 56.1667085, + "minlon": 10.2121686, + "maxlat": 56.1668412, + "maxlon": 10.2123287 + }, + "geometry": [ + { "lat": 56.1667085, "lon": 10.2122409 }, + { "lat": 56.1667904, "lon": 10.2123031 }, + { "lat": 56.1668241, "lon": 10.2123287 }, + { "lat": 56.1668412, "lon": 10.2122564 }, + { "lat": 56.1668061, "lon": 10.2122298 }, + { "lat": 56.1667255, "lon": 10.2121686 }, + { "lat": 56.1667085, "lon": 10.2122409 } + ], + "tags": { + "amenity": "parking", + "capacity:disabled": "1", + "parking": "street_side" + } +}, +{ + "type": "way", + "id": 1555041335, + "bounds": { + "minlat": 56.1667904, + "minlon": 10.2122298, + "maxlat": 56.1668412, + "maxlon": 10.2123287 + }, + "geometry": [ + { "lat": 56.1667904, "lon": 10.2123031 }, + { "lat": 56.1668241, "lon": 10.2123287 }, + { "lat": 56.1668412, "lon": 10.2122564 }, + { "lat": 56.1668061, "lon": 10.2122298 }, + { "lat": 56.1667904, "lon": 10.2123031 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1555858185, + "bounds": { + "minlat": 56.2623275, + "minlon": 10.3030346, + "maxlat": 56.2624045, + "maxlon": 10.3031851 + }, + "geometry": [ + { "lat": 56.2624045, "lon": 10.3030790 }, + { "lat": 56.2623873, "lon": 10.3031204 }, + { "lat": 56.2623604, "lon": 10.3031851 }, + { "lat": 56.2623275, "lon": 10.3031408 }, + { "lat": 56.2623715, "lon": 10.3030346 }, + { "lat": 56.2624045, "lon": 10.3030790 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1555858186, + "bounds": { + "minlat": 56.2625358, + "minlon": 10.3011695, + "maxlat": 56.2625821, + "maxlon": 10.3012403 + }, + "geometry": [ + { "lat": 56.2625358, "lon": 10.3012278 }, + { "lat": 56.2625412, "lon": 10.3011695 }, + { "lat": 56.2625821, "lon": 10.3011820 }, + { "lat": 56.2625766, "lon": 10.3012403 }, + { "lat": 56.2625358, "lon": 10.3012278 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1555858187, + "bounds": { + "minlat": 56.2711213, + "minlon": 10.3082459, + "maxlat": 56.2711846, + "maxlon": 10.3083714 + }, + "geometry": [ + { "lat": 56.2711213, "lon": 10.3083369 }, + { "lat": 56.2711590, "lon": 10.3082459 }, + { "lat": 56.2711846, "lon": 10.3082803 }, + { "lat": 56.2711470, "lon": 10.3083714 }, + { "lat": 56.2711213, "lon": 10.3083369 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1555858188, + "bounds": { + "minlat": 56.2711687, + "minlon": 10.3081165, + "maxlat": 56.2712408, + "maxlon": 10.3082609 + }, + "geometry": [ + { "lat": 56.2711687, "lon": 10.3082246 }, + { "lat": 56.2712141, "lon": 10.3081165 }, + { "lat": 56.2712408, "lon": 10.3081529 }, + { "lat": 56.2711954, "lon": 10.3082609 }, + { "lat": 56.2711687, "lon": 10.3082246 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1555858189, + "bounds": { + "minlat": 56.2715761, + "minlon": 10.3056582, + "maxlat": 56.2716947, + "maxlon": 10.3058645 + }, + "geometry": [ + { "lat": 56.2716947, "lon": 10.3057116 }, + { "lat": 56.2716038, "lon": 10.3056582 }, + { "lat": 56.2715761, "lon": 10.3058111 }, + { "lat": 56.2716670, "lon": 10.3058645 }, + { "lat": 56.2716947, "lon": 10.3057116 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "4", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1555858190, + "bounds": { + "minlat": 56.2764714, + "minlon": 10.3155969, + "maxlat": 56.2765163, + "maxlon": 10.3156880 + }, + "geometry": [ + { "lat": 56.2764952, "lon": 10.3155969 }, + { "lat": 56.2765163, "lon": 10.3156215 }, + { "lat": 56.2764926, "lon": 10.3156880 }, + { "lat": 56.2764714, "lon": 10.3156635 }, + { "lat": 56.2764952, "lon": 10.3155969 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1555858191, + "bounds": { + "minlat": 56.2777774, + "minlon": 10.3181653, + "maxlat": 56.2778216, + "maxlon": 10.3182564 + }, + "geometry": [ + { "lat": 56.2777964, "lon": 10.3182564 }, + { "lat": 56.2778216, "lon": 10.3181881 }, + { "lat": 56.2778025, "lon": 10.3181653 }, + { "lat": 56.2777774, "lon": 10.3182336 }, + { "lat": 56.2777964, "lon": 10.3182564 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1555858192, + "bounds": { + "minlat": 56.2756047, + "minlon": 10.3167878, + "maxlat": 56.2756980, + "maxlon": 10.3169582 + }, + "geometry": [ + { "lat": 56.2756389, "lon": 10.3167878 }, + { "lat": 56.2756980, "lon": 10.3168464 }, + { "lat": 56.2756639, "lon": 10.3169582 }, + { "lat": 56.2756047, "lon": 10.3168997 }, + { "lat": 56.2756389, "lon": 10.3167878 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "2", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1555862305, + "bounds": { + "minlat": 56.2233008, + "minlon": 10.2888642, + "maxlat": 56.2233686, + "maxlon": 10.2890289 + }, + "geometry": [ + { "lat": 56.2233008, "lon": 10.2890039 }, + { "lat": 56.2233380, "lon": 10.2888642 }, + { "lat": 56.2233686, "lon": 10.2888907 }, + { "lat": 56.2233298, "lon": 10.2890289 }, + { "lat": 56.2233008, "lon": 10.2890039 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "2", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1555862306, + "bounds": { + "minlat": 56.2116258, + "minlon": 10.2792066, + "maxlat": 56.2116701, + "maxlon": 10.2793009 + }, + "geometry": [ + { "lat": 56.2116701, "lon": 10.2792283 }, + { "lat": 56.2116489, "lon": 10.2793009 }, + { "lat": 56.2116258, "lon": 10.2792791 }, + { "lat": 56.2116470, "lon": 10.2792066 }, + { "lat": 56.2116701, "lon": 10.2792283 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1555862307, + "bounds": { + "minlat": 56.2119604, + "minlon": 10.2702624, + "maxlat": 56.2120516, + "maxlon": 10.2703909 + }, + "geometry": [ + { "lat": 56.2120516, "lon": 10.2703002 }, + { "lat": 56.2119741, "lon": 10.2703909 }, + { "lat": 56.2119604, "lon": 10.2703532 }, + { "lat": 56.2120380, "lon": 10.2702624 }, + { "lat": 56.2120516, "lon": 10.2703002 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "2", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1555862308, + "bounds": { + "minlat": 56.2051362, + "minlon": 10.2619544, + "maxlat": 56.2052123, + "maxlon": 10.2620165 + }, + "geometry": [ + { "lat": 56.2051487, "lon": 10.2620149 }, + { "lat": 56.2051362, "lon": 10.2619638 }, + { "lat": 56.2051475, "lon": 10.2619544 }, + { "lat": 56.2051959, "lon": 10.2619555 }, + { "lat": 56.2052123, "lon": 10.2620165 }, + { "lat": 56.2051487, "lon": 10.2620149 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1555862309, + "bounds": { + "minlat": 56.2056185, + "minlon": 10.2614363, + "maxlat": 56.2056694, + "maxlon": 10.2615209 + }, + "geometry": [ + { "lat": 56.2056335, "lon": 10.2615209 }, + { "lat": 56.2056694, "lon": 10.2614854 }, + { "lat": 56.2056544, "lon": 10.2614363 }, + { "lat": 56.2056185, "lon": 10.2614717 }, + { "lat": 56.2056335, "lon": 10.2615209 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1555862310, + "bounds": { + "minlat": 56.2015474, + "minlon": 10.2608807, + "maxlat": 56.2015967, + "maxlon": 10.2609399 + }, + "geometry": [ + { "lat": 56.2015967, "lon": 10.2609244 }, + { "lat": 56.2015521, "lon": 10.2609399 }, + { "lat": 56.2015474, "lon": 10.2608962 }, + { "lat": 56.2015920, "lon": 10.2608807 }, + { "lat": 56.2015967, "lon": 10.2609244 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1555862311, + "bounds": { + "minlat": 56.2013477, + "minlon": 10.2604663, + "maxlat": 56.2013949, + "maxlon": 10.2605242 + }, + "geometry": [ + { "lat": 56.2013477, "lon": 10.2604891 }, + { "lat": 56.2013888, "lon": 10.2604663 }, + { "lat": 56.2013949, "lon": 10.2605013 }, + { "lat": 56.2013537, "lon": 10.2605242 }, + { "lat": 56.2013477, "lon": 10.2604891 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1555862312, + "bounds": { + "minlat": 56.2014448, + "minlon": 10.2601057, + "maxlat": 56.2015098, + "maxlon": 10.2601874 + }, + "geometry": [ + { "lat": 56.2015098, "lon": 10.2601520 }, + { "lat": 56.2014538, "lon": 10.2601874 }, + { "lat": 56.2014448, "lon": 10.2601412 }, + { "lat": 56.2015007, "lon": 10.2601057 }, + { "lat": 56.2015098, "lon": 10.2601520 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1555862313, + "bounds": { + "minlat": 56.2015159, + "minlon": 10.2449946, + "maxlat": 56.2015759, + "maxlon": 10.2450894 + }, + "geometry": [ + { "lat": 56.2015615, "lon": 10.2449946 }, + { "lat": 56.2015159, "lon": 10.2450306 }, + { "lat": 56.2015302, "lon": 10.2450894 }, + { "lat": 56.2015759, "lon": 10.2450534 }, + { "lat": 56.2015615, "lon": 10.2449946 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1555862314, + "bounds": { + "minlat": 56.2023578, + "minlon": 10.2467254, + "maxlat": 56.2024058, + "maxlon": 10.2468140 + }, + "geometry": [ + { "lat": 56.2023578, "lon": 10.2467876 }, + { "lat": 56.2023735, "lon": 10.2467254 }, + { "lat": 56.2024058, "lon": 10.2467518 }, + { "lat": 56.2023901, "lon": 10.2468140 }, + { "lat": 56.2023578, "lon": 10.2467876 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1555862315, + "bounds": { + "minlat": 56.2025000, + "minlon": 10.2458489, + "maxlat": 56.2025537, + "maxlon": 10.2459346 + }, + "geometry": [ + { "lat": 56.2025537, "lon": 10.2458818 }, + { "lat": 56.2025404, "lon": 10.2459346 }, + { "lat": 56.2025000, "lon": 10.2459017 }, + { "lat": 56.2025133, "lon": 10.2458489 }, + { "lat": 56.2025537, "lon": 10.2458818 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1555862316, + "bounds": { + "minlat": 56.2019924, + "minlon": 10.2453929, + "maxlat": 56.2020398, + "maxlon": 10.2454885 + }, + "geometry": [ + { "lat": 56.2020081, "lon": 10.2453929 }, + { "lat": 56.2020398, "lon": 10.2454148 }, + { "lat": 56.2020241, "lon": 10.2454885 }, + { "lat": 56.2019924, "lon": 10.2454666 }, + { "lat": 56.2020081, "lon": 10.2453929 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1555862318, + "bounds": { + "minlat": 56.1939226, + "minlon": 10.2237940, + "maxlat": 56.1939777, + "maxlon": 10.2239261 + }, + "geometry": [ + { "lat": 56.1939777, "lon": 10.2238052 }, + { "lat": 56.1939687, "lon": 10.2239261 }, + { "lat": 56.1939226, "lon": 10.2239149 }, + { "lat": 56.1939317, "lon": 10.2237940 }, + { "lat": 56.1939777, "lon": 10.2238052 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "2", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1555862319, + "bounds": { + "minlat": 56.1885078, + "minlon": 10.2151642, + "maxlat": 56.1885912, + "maxlon": 10.2153098 + }, + "geometry": [ + { "lat": 56.1885912, "lon": 10.2152453 }, + { "lat": 56.1885387, "lon": 10.2153098 }, + { "lat": 56.1885078, "lon": 10.2152287 }, + { "lat": 56.1885604, "lon": 10.2151642 }, + { "lat": 56.1885912, "lon": 10.2152453 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "2", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1555862320, + "bounds": { + "minlat": 56.1089457, + "minlon": 10.1542249, + "maxlat": 56.1090002, + "maxlon": 10.1543193 + }, + "geometry": [ + { "lat": 56.1089658, "lon": 10.1542249 }, + { "lat": 56.1090002, "lon": 10.1542744 }, + { "lat": 56.1089801, "lon": 10.1543193 }, + { "lat": 56.1089457, "lon": 10.1542698 }, + { "lat": 56.1089658, "lon": 10.1542249 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1555862322, + "bounds": { + "minlat": 56.1090709, + "minlon": 10.1542386, + "maxlat": 56.1091336, + "maxlon": 10.1543483 + }, + "geometry": [ + { "lat": 56.1091336, "lon": 10.1542927 }, + { "lat": 56.1091092, "lon": 10.1543483 }, + { "lat": 56.1090709, "lon": 10.1542942 }, + { "lat": 56.1090954, "lon": 10.1542386 }, + { "lat": 56.1091336, "lon": 10.1542927 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1555862323, + "bounds": { + "minlat": 56.1030415, + "minlon": 10.1546604, + "maxlat": 56.1030874, + "maxlon": 10.1547513 + }, + "geometry": [ + { "lat": 56.1030874, "lon": 10.1546809 }, + { "lat": 56.1030733, "lon": 10.1547513 }, + { "lat": 56.1030415, "lon": 10.1547308 }, + { "lat": 56.1030556, "lon": 10.1546604 }, + { "lat": 56.1030874, "lon": 10.1546809 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1555865465, + "bounds": { + "minlat": 56.2286894, + "minlon": 10.2376047, + "maxlat": 56.2287416, + "maxlon": 10.2377261 + }, + "geometry": [ + { "lat": 56.2287362, "lon": 10.2376047 }, + { "lat": 56.2287416, "lon": 10.2377189 }, + { "lat": 56.2286948, "lon": 10.2377261 }, + { "lat": 56.2286894, "lon": 10.2376118 }, + { "lat": 56.2287362, "lon": 10.2376047 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "2", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1555865466, + "bounds": { + "minlat": 56.2368594, + "minlon": 10.2350925, + "maxlat": 56.2369199, + "maxlon": 10.2352141 + }, + "geometry": [ + { "lat": 56.2368778, "lon": 10.2352141 }, + { "lat": 56.2368594, "lon": 10.2351187 }, + { "lat": 56.2369015, "lon": 10.2350925 }, + { "lat": 56.2369199, "lon": 10.2351878 }, + { "lat": 56.2368778, "lon": 10.2352141 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "2", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1555865468, + "bounds": { + "minlat": 56.2038016, + "minlon": 10.2356253, + "maxlat": 56.2038506, + "maxlon": 10.2356900 + }, + "geometry": [ + { "lat": 56.2038506, "lon": 10.2356783 }, + { "lat": 56.2038059, "lon": 10.2356900 }, + { "lat": 56.2038016, "lon": 10.2356370 }, + { "lat": 56.2038463, "lon": 10.2356253 }, + { "lat": 56.2038506, "lon": 10.2356783 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1555865469, + "bounds": { + "minlat": 56.2433773, + "minlon": 10.2629412, + "maxlat": 56.2434439, + "maxlon": 10.2630772 + }, + "geometry": [ + { "lat": 56.2434214, "lon": 10.2629412 }, + { "lat": 56.2434439, "lon": 10.2630468 }, + { "lat": 56.2433998, "lon": 10.2630772 }, + { "lat": 56.2433773, "lon": 10.2629716 }, + { "lat": 56.2434214, "lon": 10.2629412 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "2", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1555865470, + "bounds": { + "minlat": 56.2467572, + "minlon": 10.2671217, + "maxlat": 56.2468030, + "maxlon": 10.2672125 + }, + "geometry": [ + { "lat": 56.2467875, "lon": 10.2671217 }, + { "lat": 56.2468030, "lon": 10.2671903 }, + { "lat": 56.2467727, "lon": 10.2672125 }, + { "lat": 56.2467572, "lon": 10.2671439 }, + { "lat": 56.2467875, "lon": 10.2671217 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1555865471, + "bounds": { + "minlat": 56.2098325, + "minlon": 10.2869946, + "maxlat": 56.2098837, + "maxlon": 10.2870813 + }, + "geometry": [ + { "lat": 56.2098837, "lon": 10.2870348 }, + { "lat": 56.2098492, "lon": 10.2870813 }, + { "lat": 56.2098325, "lon": 10.2870411 }, + { "lat": 56.2098670, "lon": 10.2869946 }, + { "lat": 56.2098837, "lon": 10.2870348 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1555865472, + "bounds": { + "minlat": 56.2102750, + "minlon": 10.2877462, + "maxlat": 56.2103205, + "maxlon": 10.2878359 + }, + "geometry": [ + { "lat": 56.2102976, "lon": 10.2878359 }, + { "lat": 56.2102750, "lon": 10.2878094 }, + { "lat": 56.2102979, "lon": 10.2877462 }, + { "lat": 56.2103205, "lon": 10.2877726 }, + { "lat": 56.2102976, "lon": 10.2878359 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1555865473, + "bounds": { + "minlat": 56.1679583, + "minlon": 10.1987910, + "maxlat": 56.1679927, + "maxlon": 10.1988780 + }, + "geometry": [ + { "lat": 56.1679783, "lon": 10.1987910 }, + { "lat": 56.1679927, "lon": 10.1988655 }, + { "lat": 56.1679727, "lon": 10.1988780 }, + { "lat": 56.1679583, "lon": 10.1988035 }, + { "lat": 56.1679783, "lon": 10.1987910 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1555865474, + "bounds": { + "minlat": 56.1669700, + "minlon": 10.1987074, + "maxlat": 56.1670202, + "maxlon": 10.1987888 + }, + "geometry": [ + { "lat": 56.1670202, "lon": 10.1987638 }, + { "lat": 56.1669812, "lon": 10.1987888 }, + { "lat": 56.1669700, "lon": 10.1987325 }, + { "lat": 56.1670090, "lon": 10.1987074 }, + { "lat": 56.1670202, "lon": 10.1987638 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1555865475, + "bounds": { + "minlat": 56.1665494, + "minlon": 10.1993350, + "maxlat": 56.1665936, + "maxlon": 10.1993944 + }, + "geometry": [ + { "lat": 56.1665494, "lon": 10.1993591 }, + { "lat": 56.1665865, "lon": 10.1993350 }, + { "lat": 56.1665936, "lon": 10.1993703 }, + { "lat": 56.1665565, "lon": 10.1993944 }, + { "lat": 56.1665494, "lon": 10.1993591 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1555865476, + "bounds": { + "minlat": 56.1666813, + "minlon": 10.1993250, + "maxlat": 56.1667271, + "maxlon": 10.1993902 + }, + "geometry": [ + { "lat": 56.1666813, "lon": 10.1993477 }, + { "lat": 56.1667192, "lon": 10.1993250 }, + { "lat": 56.1667271, "lon": 10.1993675 }, + { "lat": 56.1666891, "lon": 10.1993902 }, + { "lat": 56.1666813, "lon": 10.1993477 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1555865477, + "bounds": { + "minlat": 56.1663289, + "minlon": 10.1996724, + "maxlat": 56.1663657, + "maxlon": 10.1997406 + }, + "geometry": [ + { "lat": 56.1663289, "lon": 10.1996899 }, + { "lat": 56.1663553, "lon": 10.1996724 }, + { "lat": 56.1663657, "lon": 10.1997230 }, + { "lat": 56.1663394, "lon": 10.1997406 }, + { "lat": 56.1663289, "lon": 10.1996899 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1555865478, + "bounds": { + "minlat": 56.1662467, + "minlon": 10.1997279, + "maxlat": 56.1662855, + "maxlon": 10.1998011 + }, + "geometry": [ + { "lat": 56.1662744, "lon": 10.1997279 }, + { "lat": 56.1662855, "lon": 10.1997830 }, + { "lat": 56.1662579, "lon": 10.1998011 }, + { "lat": 56.1662467, "lon": 10.1997459 }, + { "lat": 56.1662744, "lon": 10.1997279 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1555865479, + "bounds": { + "minlat": 56.1660044, + "minlon": 10.1998021, + "maxlat": 56.1660574, + "maxlon": 10.1998780 + }, + "geometry": [ + { "lat": 56.1660574, "lon": 10.1998490 }, + { "lat": 56.1660142, "lon": 10.1998780 }, + { "lat": 56.1660044, "lon": 10.1998310 }, + { "lat": 56.1660477, "lon": 10.1998021 }, + { "lat": 56.1660574, "lon": 10.1998490 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1555865480, + "bounds": { + "minlat": 56.1665610, + "minlon": 10.2037774, + "maxlat": 56.1666149, + "maxlon": 10.2038621 + }, + "geometry": [ + { "lat": 56.1665610, "lon": 10.2038050 }, + { "lat": 56.1666034, "lon": 10.2037774 }, + { "lat": 56.1666149, "lon": 10.2038344 }, + { "lat": 56.1665725, "lon": 10.2038621 }, + { "lat": 56.1665610, "lon": 10.2038050 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1556631742, + "bounds": { + "minlat": 56.2659376, + "minlon": 10.3100478, + "maxlat": 56.2659864, + "maxlon": 10.3101153 + }, + "geometry": [ + { "lat": 56.2659420, "lon": 10.3100478 }, + { "lat": 56.2659864, "lon": 10.3100591 }, + { "lat": 56.2659820, "lon": 10.3101153 }, + { "lat": 56.2659376, "lon": 10.3101040 }, + { "lat": 56.2659420, "lon": 10.3100478 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1556851595, + "bounds": { + "minlat": 56.1480583, + "minlon": 10.1907230, + "maxlat": 56.1481034, + "maxlon": 10.1908309 + }, + "geometry": [ + { "lat": 56.1480640, "lon": 10.1908309 }, + { "lat": 56.1481034, "lon": 10.1907781 }, + { "lat": 56.1480977, "lon": 10.1907230 }, + { "lat": 56.1480583, "lon": 10.1907775 }, + { "lat": 56.1480640, "lon": 10.1908309 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1556851786, + "bounds": { + "minlat": 56.1533285, + "minlon": 10.1795554, + "maxlat": 56.1533797, + "maxlon": 10.1796417 + }, + "geometry": [ + { "lat": 56.1533449, "lon": 10.1796417 }, + { "lat": 56.1533797, "lon": 10.1796032 }, + { "lat": 56.1533634, "lon": 10.1795554 }, + { "lat": 56.1533285, "lon": 10.1795939 }, + { "lat": 56.1533449, "lon": 10.1796417 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1556853035, + "bounds": { + "minlat": 56.1639920, + "minlon": 10.1748528, + "maxlat": 56.1640262, + "maxlon": 10.1749341 + }, + "geometry": [ + { "lat": 56.1640262, "lon": 10.1749288 }, + { "lat": 56.1640220, "lon": 10.1748528 }, + { "lat": 56.1639920, "lon": 10.1748581 }, + { "lat": 56.1639965, "lon": 10.1749341 }, + { "lat": 56.1640262, "lon": 10.1749288 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1556853580, + "bounds": { + "minlat": 56.1702474, + "minlon": 10.1753204, + "maxlat": 56.1702824, + "maxlon": 10.1754131 + }, + "geometry": [ + { "lat": 56.1702824, "lon": 10.1754074 }, + { "lat": 56.1702773, "lon": 10.1753204 }, + { "lat": 56.1702474, "lon": 10.1753261 }, + { "lat": 56.1702526, "lon": 10.1754131 }, + { "lat": 56.1702824, "lon": 10.1754074 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1556853581, + "bounds": { + "minlat": 56.1711904, + "minlon": 10.1750482, + "maxlat": 56.1712229, + "maxlon": 10.1751194 + }, + "geometry": [ + { "lat": 56.1712192, "lon": 10.1750482 }, + { "lat": 56.1712229, "lon": 10.1751142 }, + { "lat": 56.1711941, "lon": 10.1751194 }, + { "lat": 56.1711904, "lon": 10.1750534 }, + { "lat": 56.1712192, "lon": 10.1750482 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1556853821, + "bounds": { + "minlat": 56.1705614, + "minlon": 10.1762406, + "maxlat": 56.1705874, + "maxlon": 10.1763227 + }, + "geometry": [ + { "lat": 56.1705853, "lon": 10.1762406 }, + { "lat": 56.1705614, "lon": 10.1762428 }, + { "lat": 56.1705634, "lon": 10.1763227 }, + { "lat": 56.1705874, "lon": 10.1763210 }, + { "lat": 56.1705853, "lon": 10.1762406 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1556853822, + "bounds": { + "minlat": 56.1705390, + "minlon": 10.1762428, + "maxlat": 56.1705634, + "maxlon": 10.1763244 + }, + "geometry": [ + { "lat": 56.1705614, "lon": 10.1762428 }, + { "lat": 56.1705390, "lon": 10.1762445 }, + { "lat": 56.1705409, "lon": 10.1763244 }, + { "lat": 56.1705634, "lon": 10.1763227 }, + { "lat": 56.1705614, "lon": 10.1762428 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1556853823, + "bounds": { + "minlat": 56.1705171, + "minlon": 10.1762445, + "maxlat": 56.1705409, + "maxlon": 10.1763261 + }, + "geometry": [ + { "lat": 56.1705390, "lon": 10.1762445 }, + { "lat": 56.1705171, "lon": 10.1762462 }, + { "lat": 56.1705190, "lon": 10.1763261 }, + { "lat": 56.1705409, "lon": 10.1763244 }, + { "lat": 56.1705390, "lon": 10.1762445 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1556853824, + "bounds": { + "minlat": 56.1704961, + "minlon": 10.1762462, + "maxlat": 56.1705190, + "maxlon": 10.1763277 + }, + "geometry": [ + { "lat": 56.1705171, "lon": 10.1762462 }, + { "lat": 56.1704961, "lon": 10.1762478 }, + { "lat": 56.1704980, "lon": 10.1763277 }, + { "lat": 56.1705190, "lon": 10.1763261 }, + { "lat": 56.1705171, "lon": 10.1762462 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1556853825, + "bounds": { + "minlat": 56.1703966, + "minlon": 10.1762570, + "maxlat": 56.1704307, + "maxlon": 10.1763406 + }, + "geometry": [ + { "lat": 56.1704280, "lon": 10.1762570 }, + { "lat": 56.1704307, "lon": 10.1763372 }, + { "lat": 56.1703993, "lon": 10.1763406 }, + { "lat": 56.1703966, "lon": 10.1762605 }, + { "lat": 56.1704280, "lon": 10.1762570 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1556853826, + "bounds": { + "minlat": 56.1703643, + "minlon": 10.1762605, + "maxlat": 56.1703993, + "maxlon": 10.1763442 + }, + "geometry": [ + { "lat": 56.1703966, "lon": 10.1762605 }, + { "lat": 56.1703993, "lon": 10.1763406 }, + { "lat": 56.1703671, "lon": 10.1763442 }, + { "lat": 56.1703643, "lon": 10.1762640 }, + { "lat": 56.1703966, "lon": 10.1762605 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1556854684, + "bounds": { + "minlat": 56.1507693, + "minlon": 10.2075242, + "maxlat": 56.1508207, + "maxlon": 10.2075954 + }, + "geometry": [ + { "lat": 56.1507693, "lon": 10.2075418 }, + { "lat": 56.1507758, "lon": 10.2075954 }, + { "lat": 56.1508207, "lon": 10.2075778 }, + { "lat": 56.1508142, "lon": 10.2075242 }, + { "lat": 56.1507693, "lon": 10.2075418 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1557150137, + "bounds": { + "minlat": 56.1938470, + "minlon": 10.1846739, + "maxlat": 56.1938967, + "maxlon": 10.1847448 + }, + "geometry": [ + { "lat": 56.1938567, "lon": 10.1847448 }, + { "lat": 56.1938967, "lon": 10.1847141 }, + { "lat": 56.1938875, "lon": 10.1846739 }, + { "lat": 56.1938470, "lon": 10.1847042 }, + { "lat": 56.1938567, "lon": 10.1847448 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1557150138, + "bounds": { + "minlat": 56.1931329, + "minlon": 10.1852065, + "maxlat": 56.1931868, + "maxlon": 10.1852880 + }, + "geometry": [ + { "lat": 56.1931868, "lon": 10.1852547 }, + { "lat": 56.1931447, "lon": 10.1852880 }, + { "lat": 56.1931329, "lon": 10.1852399 }, + { "lat": 56.1931749, "lon": 10.1852065 }, + { "lat": 56.1931868, "lon": 10.1852547 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1557175521, + "bounds": { + "minlat": 56.1946699, + "minlon": 10.1839652, + "maxlat": 56.1947270, + "maxlon": 10.1840495 + }, + "geometry": [ + { "lat": 56.1947157, "lon": 10.1839652 }, + { "lat": 56.1946699, "lon": 10.1839975 }, + { "lat": 56.1946822, "lon": 10.1840495 }, + { "lat": 56.1947270, "lon": 10.1840161 }, + { "lat": 56.1947157, "lon": 10.1839652 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1557175522, + "bounds": { + "minlat": 56.1945763, + "minlon": 10.1840378, + "maxlat": 56.1946282, + "maxlon": 10.1841189 + }, + "geometry": [ + { "lat": 56.1946164, "lon": 10.1840378 }, + { "lat": 56.1946282, "lon": 10.1840893 }, + { "lat": 56.1945881, "lon": 10.1841189 }, + { "lat": 56.1945763, "lon": 10.1840675 }, + { "lat": 56.1946164, "lon": 10.1840378 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1557175523, + "bounds": { + "minlat": 56.1945211, + "minlon": 10.1840835, + "maxlat": 56.1945695, + "maxlon": 10.1841599 + }, + "geometry": [ + { "lat": 56.1945576, "lon": 10.1840835 }, + { "lat": 56.1945211, "lon": 10.1841103 }, + { "lat": 56.1945332, "lon": 10.1841599 }, + { "lat": 56.1945695, "lon": 10.1841328 }, + { "lat": 56.1945576, "lon": 10.1840835 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1557175524, + "bounds": { + "minlat": 56.1944248, + "minlon": 10.1841566, + "maxlat": 56.1944705, + "maxlon": 10.1842324 + }, + "geometry": [ + { "lat": 56.1944594, "lon": 10.1841566 }, + { "lat": 56.1944248, "lon": 10.1841832 }, + { "lat": 56.1944361, "lon": 10.1842324 }, + { "lat": 56.1944705, "lon": 10.1842067 }, + { "lat": 56.1944594, "lon": 10.1841566 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1557175525, + "bounds": { + "minlat": 56.1943670, + "minlon": 10.1841961, + "maxlat": 56.1944182, + "maxlon": 10.1842757 + }, + "geometry": [ + { "lat": 56.1944069, "lon": 10.1841961 }, + { "lat": 56.1943670, "lon": 10.1842282 }, + { "lat": 56.1943781, "lon": 10.1842757 }, + { "lat": 56.1944182, "lon": 10.1842458 }, + { "lat": 56.1944069, "lon": 10.1841961 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1557192764, + "bounds": { + "minlat": 56.1876012, + "minlon": 10.1856183, + "maxlat": 56.1876405, + "maxlon": 10.1856930 + }, + "geometry": [ + { "lat": 56.1876012, "lon": 10.1856413 }, + { "lat": 56.1876213, "lon": 10.1856930 }, + { "lat": 56.1876405, "lon": 10.1856666 }, + { "lat": 56.1876207, "lon": 10.1856183 }, + { "lat": 56.1876012, "lon": 10.1856413 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1557192765, + "bounds": { + "minlat": 56.1875074, + "minlon": 10.1857288, + "maxlat": 56.1875450, + "maxlon": 10.1858021 + }, + "geometry": [ + { "lat": 56.1875450, "lon": 10.1857778 }, + { "lat": 56.1875271, "lon": 10.1857288 }, + { "lat": 56.1875074, "lon": 10.1857521 }, + { "lat": 56.1875247, "lon": 10.1858021 }, + { "lat": 56.1875450, "lon": 10.1857778 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1557193694, + "bounds": { + "minlat": 56.1876494, + "minlon": 10.1873705, + "maxlat": 56.1876961, + "maxlon": 10.1874529 + }, + "geometry": [ + { "lat": 56.1876494, "lon": 10.1873968 }, + { "lat": 56.1876836, "lon": 10.1873705 }, + { "lat": 56.1876961, "lon": 10.1874256 }, + { "lat": 56.1876626, "lon": 10.1874529 }, + { "lat": 56.1876494, "lon": 10.1873968 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1557193695, + "bounds": { + "minlat": 56.1876402, + "minlon": 10.1873319, + "maxlat": 56.1876836, + "maxlon": 10.1873968 + }, + "geometry": [ + { "lat": 56.1876836, "lon": 10.1873705 }, + { "lat": 56.1876747, "lon": 10.1873319 }, + { "lat": 56.1876402, "lon": 10.1873575 }, + { "lat": 56.1876494, "lon": 10.1873968 }, + { "lat": 56.1876836, "lon": 10.1873705 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1557193699, + "bounds": { + "minlat": 56.1872725, + "minlon": 10.1868785, + "maxlat": 56.1873301, + "maxlon": 10.1869859 + }, + "geometry": [ + { "lat": 56.1873123, "lon": 10.1868785 }, + { "lat": 56.1872725, "lon": 10.1869084 }, + { "lat": 56.1872906, "lon": 10.1869859 }, + { "lat": 56.1873301, "lon": 10.1869546 }, + { "lat": 56.1873123, "lon": 10.1868785 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1557194273, + "bounds": { + "minlat": 56.1869941, + "minlon": 10.1863079, + "maxlat": 56.1870409, + "maxlon": 10.1863809 + }, + "geometry": [ + { "lat": 56.1870045, "lon": 10.1863809 }, + { "lat": 56.1870409, "lon": 10.1863554 }, + { "lat": 56.1870297, "lon": 10.1863079 }, + { "lat": 56.1869941, "lon": 10.1863366 }, + { "lat": 56.1870045, "lon": 10.1863809 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1557194274, + "bounds": { + "minlat": 56.1868854, + "minlon": 10.1858434, + "maxlat": 56.1869436, + "maxlon": 10.1859416 + }, + "geometry": [ + { "lat": 56.1869436, "lon": 10.1859099 }, + { "lat": 56.1869005, "lon": 10.1859416 }, + { "lat": 56.1868854, "lon": 10.1858750 }, + { "lat": 56.1869285, "lon": 10.1858434 }, + { "lat": 56.1869436, "lon": 10.1859099 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1557195312, + "bounds": { + "minlat": 56.1894669, + "minlon": 10.1866598, + "maxlat": 56.1895158, + "maxlon": 10.1867541 + }, + "geometry": [ + { "lat": 56.1894881, "lon": 10.1867541 }, + { "lat": 56.1895158, "lon": 10.1867251 }, + { "lat": 56.1894946, "lon": 10.1866598 }, + { "lat": 56.1894669, "lon": 10.1866889 }, + { "lat": 56.1894881, "lon": 10.1867541 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1557195313, + "bounds": { + "minlat": 56.1894946, + "minlon": 10.1866337, + "maxlat": 56.1895411, + "maxlon": 10.1867251 + }, + "geometry": [ + { "lat": 56.1895158, "lon": 10.1867251 }, + { "lat": 56.1895411, "lon": 10.1866977 }, + { "lat": 56.1895201, "lon": 10.1866337 }, + { "lat": 56.1894946, "lon": 10.1866598 }, + { "lat": 56.1895158, "lon": 10.1867251 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1557197538, + "bounds": { + "minlat": 56.1818072, + "minlon": 10.1909888, + "maxlat": 56.1818636, + "maxlon": 10.1910804 + }, + "geometry": [ + { "lat": 56.1818233, "lon": 10.1910804 }, + { "lat": 56.1818636, "lon": 10.1910349 }, + { "lat": 56.1818475, "lon": 10.1909888 }, + { "lat": 56.1818072, "lon": 10.1910343 }, + { "lat": 56.1818233, "lon": 10.1910804 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1557197539, + "bounds": { + "minlat": 56.1817906, + "minlon": 10.1909409, + "maxlat": 56.1818475, + "maxlon": 10.1910343 + }, + "geometry": [ + { "lat": 56.1818475, "lon": 10.1909888 }, + { "lat": 56.1818306, "lon": 10.1909409 }, + { "lat": 56.1817906, "lon": 10.1909866 }, + { "lat": 56.1818072, "lon": 10.1910343 }, + { "lat": 56.1818475, "lon": 10.1909888 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1557197540, + "bounds": { + "minlat": 56.1817748, + "minlon": 10.1908964, + "maxlat": 56.1818306, + "maxlon": 10.1909866 + }, + "geometry": [ + { "lat": 56.1818306, "lon": 10.1909409 }, + { "lat": 56.1818148, "lon": 10.1908964 }, + { "lat": 56.1817748, "lon": 10.1909415 }, + { "lat": 56.1817906, "lon": 10.1909866 }, + { "lat": 56.1818306, "lon": 10.1909409 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1557197541, + "bounds": { + "minlat": 56.1817584, + "minlon": 10.1908499, + "maxlat": 56.1818148, + "maxlon": 10.1909415 + }, + "geometry": [ + { "lat": 56.1818148, "lon": 10.1908964 }, + { "lat": 56.1817988, "lon": 10.1908499 }, + { "lat": 56.1817584, "lon": 10.1908954 }, + { "lat": 56.1817748, "lon": 10.1909415 }, + { "lat": 56.1818148, "lon": 10.1908964 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1557197542, + "bounds": { + "minlat": 56.1818084, + "minlon": 10.1905679, + "maxlat": 56.1818637, + "maxlon": 10.1906595 + }, + "geometry": [ + { "lat": 56.1818084, "lon": 10.1906101 }, + { "lat": 56.1818470, "lon": 10.1905679 }, + { "lat": 56.1818637, "lon": 10.1906173 }, + { "lat": 56.1818251, "lon": 10.1906595 }, + { "lat": 56.1818084, "lon": 10.1906101 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1557197543, + "bounds": { + "minlat": 56.1818251, + "minlon": 10.1906173, + "maxlat": 56.1818796, + "maxlon": 10.1907060 + }, + "geometry": [ + { "lat": 56.1818251, "lon": 10.1906595 }, + { "lat": 56.1818408, "lon": 10.1907060 }, + { "lat": 56.1818796, "lon": 10.1906643 }, + { "lat": 56.1818637, "lon": 10.1906173 }, + { "lat": 56.1818251, "lon": 10.1906595 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1557409609, + "bounds": { + "minlat": 56.1563177, + "minlon": 10.1647235, + "maxlat": 56.1563700, + "maxlon": 10.1648115 + }, + "geometry": [ + { "lat": 56.1563177, "lon": 10.1647342 }, + { "lat": 56.1563645, "lon": 10.1647235 }, + { "lat": 56.1563700, "lon": 10.1648008 }, + { "lat": 56.1563232, "lon": 10.1648115 }, + { "lat": 56.1563177, "lon": 10.1647342 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1557410057, + "bounds": { + "minlat": 56.1724554, + "minlon": 10.1549114, + "maxlat": 56.1724991, + "maxlon": 10.1550043 + }, + "geometry": [ + { "lat": 56.1724554, "lon": 10.1549818 }, + { "lat": 56.1724770, "lon": 10.1550043 }, + { "lat": 56.1724991, "lon": 10.1549337 }, + { "lat": 56.1724778, "lon": 10.1549114 }, + { "lat": 56.1724554, "lon": 10.1549818 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1557410058, + "bounds": { + "minlat": 56.1724659, + "minlon": 10.1543696, + "maxlat": 56.1725039, + "maxlon": 10.1544546 + }, + "geometry": [ + { "lat": 56.1724659, "lon": 10.1544360 }, + { "lat": 56.1724837, "lon": 10.1544546 }, + { "lat": 56.1725039, "lon": 10.1543877 }, + { "lat": 56.1724866, "lon": 10.1543696 }, + { "lat": 56.1724659, "lon": 10.1544360 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1557411322, + "bounds": { + "minlat": 56.1651876, + "minlon": 10.1828125, + "maxlat": 56.1652419, + "maxlon": 10.1829149 + }, + "geometry": [ + { "lat": 56.1652063, "lon": 10.1829028 }, + { "lat": 56.1652419, "lon": 10.1829149 }, + { "lat": 56.1652227, "lon": 10.1828225 }, + { "lat": 56.1651876, "lon": 10.1828125 }, + { "lat": 56.1652063, "lon": 10.1829028 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1557411323, + "bounds": { + "minlat": 56.1648269, + "minlon": 10.1830548, + "maxlat": 56.1648865, + "maxlon": 10.1831510 + }, + "geometry": [ + { "lat": 56.1648532, "lon": 10.1831421 }, + { "lat": 56.1648269, "lon": 10.1830548 }, + { "lat": 56.1648660, "lon": 10.1830675 }, + { "lat": 56.1648865, "lon": 10.1831510 }, + { "lat": 56.1648532, "lon": 10.1831421 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1557412890, + "bounds": { + "minlat": 56.1628907, + "minlon": 10.1822928, + "maxlat": 56.1629384, + "maxlon": 10.1823651 + }, + "geometry": [ + { "lat": 56.1629322, "lon": 10.1823651 }, + { "lat": 56.1629384, "lon": 10.1823073 }, + { "lat": 56.1628969, "lon": 10.1822928 }, + { "lat": 56.1628907, "lon": 10.1823506 }, + { "lat": 56.1629322, "lon": 10.1823651 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1557412891, + "bounds": { + "minlat": 56.1628839, + "minlon": 10.1823506, + "maxlat": 56.1629322, + "maxlon": 10.1824278 + }, + "geometry": [ + { "lat": 56.1629322, "lon": 10.1823651 }, + { "lat": 56.1629255, "lon": 10.1824278 }, + { "lat": 56.1628839, "lon": 10.1824136 }, + { "lat": 56.1628907, "lon": 10.1823506 }, + { "lat": 56.1629322, "lon": 10.1823651 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1557412892, + "bounds": { + "minlat": 56.1628775, + "minlon": 10.1824136, + "maxlat": 56.1629255, + "maxlon": 10.1824889 + }, + "geometry": [ + { "lat": 56.1629255, "lon": 10.1824278 }, + { "lat": 56.1629189, "lon": 10.1824889 }, + { "lat": 56.1628775, "lon": 10.1824751 }, + { "lat": 56.1628839, "lon": 10.1824136 }, + { "lat": 56.1629255, "lon": 10.1824278 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1557413726, + "bounds": { + "minlat": 56.1724474, + "minlon": 10.2031746, + "maxlat": 56.1724917, + "maxlon": 10.2032965 + }, + "geometry": [ + { "lat": 56.1724917, "lon": 10.2032818 }, + { "lat": 56.1724702, "lon": 10.2032965 }, + { "lat": 56.1724474, "lon": 10.2031894 }, + { "lat": 56.1724689, "lon": 10.2031746 }, + { "lat": 56.1724917, "lon": 10.2032818 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1557413727, + "bounds": { + "minlat": 56.1720780, + "minlon": 10.2033480, + "maxlat": 56.1721275, + "maxlon": 10.2034308 + }, + "geometry": [ + { "lat": 56.1721275, "lon": 10.2034046 }, + { "lat": 56.1720888, "lon": 10.2034308 }, + { "lat": 56.1720780, "lon": 10.2033750 }, + { "lat": 56.1721158, "lon": 10.2033480 }, + { "lat": 56.1721275, "lon": 10.2034046 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1557431864, + "bounds": { + "minlat": 56.1988629, + "minlon": 10.1805607, + "maxlat": 56.1989150, + "maxlon": 10.1806656 + }, + "geometry": [ + { "lat": 56.1988930, "lon": 10.1805607 }, + { "lat": 56.1989150, "lon": 10.1806378 }, + { "lat": 56.1988853, "lon": 10.1806656 }, + { "lat": 56.1988676, "lon": 10.1806067 }, + { "lat": 56.1988629, "lon": 10.1805901 }, + { "lat": 56.1988930, "lon": 10.1805607 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1557431865, + "bounds": { + "minlat": 56.1988853, + "minlon": 10.1806378, + "maxlat": 56.1989368, + "maxlon": 10.1807407 + }, + "geometry": [ + { "lat": 56.1989150, "lon": 10.1806378 }, + { "lat": 56.1989368, "lon": 10.1807129 }, + { "lat": 56.1989072, "lon": 10.1807407 }, + { "lat": 56.1988853, "lon": 10.1806656 }, + { "lat": 56.1989150, "lon": 10.1806378 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1557431866, + "bounds": { + "minlat": 56.1989419, + "minlon": 10.1808240, + "maxlat": 56.1989909, + "maxlon": 10.1809237 + }, + "geometry": [ + { "lat": 56.1989702, "lon": 10.1808240 }, + { "lat": 56.1989419, "lon": 10.1808497 }, + { "lat": 56.1989631, "lon": 10.1809237 }, + { "lat": 56.1989909, "lon": 10.1808978 }, + { "lat": 56.1989702, "lon": 10.1808240 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1557431867, + "bounds": { + "minlat": 56.1989631, + "minlon": 10.1808978, + "maxlat": 56.1990115, + "maxlon": 10.1809950 + }, + "geometry": [ + { "lat": 56.1989909, "lon": 10.1808978 }, + { "lat": 56.1990115, "lon": 10.1809691 }, + { "lat": 56.1989837, "lon": 10.1809950 }, + { "lat": 56.1989631, "lon": 10.1809237 }, + { "lat": 56.1989909, "lon": 10.1808978 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1557431868, + "bounds": { + "minlat": 56.1990187, + "minlon": 10.1810766, + "maxlat": 56.1990637, + "maxlon": 10.1811670 + }, + "geometry": [ + { "lat": 56.1990443, "lon": 10.1810766 }, + { "lat": 56.1990187, "lon": 10.1811048 }, + { "lat": 56.1990378, "lon": 10.1811670 }, + { "lat": 56.1990637, "lon": 10.1811416 }, + { "lat": 56.1990443, "lon": 10.1810766 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1557433256, + "bounds": { + "minlat": 56.1926140, + "minlon": 10.1741668, + "maxlat": 56.1926650, + "maxlon": 10.1742773 + }, + "geometry": [ + { "lat": 56.1926140, "lon": 10.1741887 }, + { "lat": 56.1926324, "lon": 10.1742773 }, + { "lat": 56.1926650, "lon": 10.1742554 }, + { "lat": 56.1926466, "lon": 10.1741668 }, + { "lat": 56.1926140, "lon": 10.1741887 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1557434490, + "bounds": { + "minlat": 56.1962256, + "minlon": 10.1763699, + "maxlat": 56.1962742, + "maxlon": 10.1764977 + }, + "geometry": [ + { "lat": 56.1962454, "lon": 10.1764977 }, + { "lat": 56.1962402, "lon": 10.1764685 }, + { "lat": 56.1962256, "lon": 10.1763865 }, + { "lat": 56.1962544, "lon": 10.1763699 }, + { "lat": 56.1962742, "lon": 10.1764812 }, + { "lat": 56.1962454, "lon": 10.1764977 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1557434491, + "bounds": { + "minlat": 56.1962544, + "minlon": 10.1763537, + "maxlat": 56.1963027, + "maxlon": 10.1764812 + }, + "geometry": [ + { "lat": 56.1962742, "lon": 10.1764812 }, + { "lat": 56.1963027, "lon": 10.1764645 }, + { "lat": 56.1962971, "lon": 10.1764327 }, + { "lat": 56.1962832, "lon": 10.1763537 }, + { "lat": 56.1962544, "lon": 10.1763699 }, + { "lat": 56.1962742, "lon": 10.1764812 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1557434492, + "bounds": { + "minlat": 56.1963455, + "minlon": 10.1762909, + "maxlat": 56.1963917, + "maxlon": 10.1763927 + }, + "geometry": [ + { "lat": 56.1963611, "lon": 10.1763927 }, + { "lat": 56.1963455, "lon": 10.1763094 }, + { "lat": 56.1963761, "lon": 10.1762909 }, + { "lat": 56.1963917, "lon": 10.1763742 }, + { "lat": 56.1963611, "lon": 10.1763927 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1557434644, + "bounds": { + "minlat": 56.1944073, + "minlon": 10.1723015, + "maxlat": 56.1944844, + "maxlon": 10.1723849 + }, + "geometry": [ + { "lat": 56.1944832, "lon": 10.1723849 }, + { "lat": 56.1944073, "lon": 10.1723744 }, + { "lat": 56.1944099, "lon": 10.1723015 }, + { "lat": 56.1944363, "lon": 10.1723027 }, + { "lat": 56.1944844, "lon": 10.1723050 }, + { "lat": 56.1944832, "lon": 10.1723849 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1557434645, + "bounds": { + "minlat": 56.1944363, + "minlon": 10.1722419, + "maxlat": 56.1944854, + "maxlon": 10.1723050 + }, + "geometry": [ + { "lat": 56.1944363, "lon": 10.1723027 }, + { "lat": 56.1944370, "lon": 10.1722419 }, + { "lat": 56.1944854, "lon": 10.1722419 }, + { "lat": 56.1944844, "lon": 10.1723050 }, + { "lat": 56.1944363, "lon": 10.1723027 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1557434646, + "bounds": { + "minlat": 56.1944370, + "minlon": 10.1721788, + "maxlat": 56.1944863, + "maxlon": 10.1722419 + }, + "geometry": [ + { "lat": 56.1944370, "lon": 10.1722419 }, + { "lat": 56.1944373, "lon": 10.1721840 }, + { "lat": 56.1944863, "lon": 10.1721788 }, + { "lat": 56.1944854, "lon": 10.1722419 }, + { "lat": 56.1944370, "lon": 10.1722419 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1557468737, + "bounds": { + "minlat": 56.1761614, + "minlon": 10.2052042, + "maxlat": 56.1761896, + "maxlon": 10.2052833 + }, + "geometry": [ + { "lat": 56.1761896, "lon": 10.2052125 }, + { "lat": 56.1761715, "lon": 10.2052042 }, + { "lat": 56.1761614, "lon": 10.2052750 }, + { "lat": 56.1761796, "lon": 10.2052833 }, + { "lat": 56.1761896, "lon": 10.2052125 } + ], + "tags": { + "amenity": "parking", + "capacity": "1", + "capacity:disabled": "1", + "orientation": "parallel", + "parking": "street_side" + } +}, +{ + "type": "way", + "id": 1557469915, + "bounds": { + "minlat": 56.1672789, + "minlon": 10.1848130, + "maxlat": 56.1673340, + "maxlon": 10.1849102 + }, + "geometry": [ + { "lat": 56.1672922, "lon": 10.1849102 }, + { "lat": 56.1672789, "lon": 10.1848855 }, + { "lat": 56.1673208, "lon": 10.1848130 }, + { "lat": 56.1673340, "lon": 10.1848376 }, + { "lat": 56.1672922, "lon": 10.1849102 } + ], + "tags": { + "amenity": "parking", + "capacity": "1", + "capacity:disabled": "1" + } +}, +{ + "type": "way", + "id": 1557470158, + "bounds": { + "minlat": 56.1699250, + "minlon": 10.1848106, + "maxlat": 56.1699737, + "maxlon": 10.1849044 + }, + "geometry": [ + { "lat": 56.1699250, "lon": 10.1848932 }, + { "lat": 56.1699341, "lon": 10.1848106 }, + { "lat": 56.1699737, "lon": 10.1848212 }, + { "lat": 56.1699652, "lon": 10.1849044 }, + { "lat": 56.1699250, "lon": 10.1848932 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1557470159, + "bounds": { + "minlat": 56.1699652, + "minlon": 10.1848212, + "maxlat": 56.1700069, + "maxlon": 10.1849137 + }, + "geometry": [ + { "lat": 56.1699652, "lon": 10.1849044 }, + { "lat": 56.1699989, "lon": 10.1849137 }, + { "lat": 56.1700069, "lon": 10.1848318 }, + { "lat": 56.1699737, "lon": 10.1848212 }, + { "lat": 56.1699652, "lon": 10.1849044 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1557531330, + "bounds": { + "minlat": 56.1535344, + "minlon": 10.1354133, + "maxlat": 56.1535760, + "maxlon": 10.1355015 + }, + "geometry": [ + { "lat": 56.1535693, "lon": 10.1354133 }, + { "lat": 56.1535760, "lon": 10.1354917 }, + { "lat": 56.1535412, "lon": 10.1355015 }, + { "lat": 56.1535344, "lon": 10.1354231 }, + { "lat": 56.1535693, "lon": 10.1354133 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1557531331, + "bounds": { + "minlat": 56.1535024, + "minlon": 10.1354231, + "maxlat": 56.1535412, + "maxlon": 10.1355101 + }, + "geometry": [ + { "lat": 56.1535412, "lon": 10.1355015 }, + { "lat": 56.1535091, "lon": 10.1355101 }, + { "lat": 56.1535024, "lon": 10.1354323 }, + { "lat": 56.1535344, "lon": 10.1354231 }, + { "lat": 56.1535412, "lon": 10.1355015 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1557692077, + "bounds": { + "minlat": 56.1287719, + "minlon": 10.1606941, + "maxlat": 56.1288325, + "maxlon": 10.1608061 + }, + "geometry": [ + { "lat": 56.1288325, "lon": 10.1607662 }, + { "lat": 56.1287973, "lon": 10.1606941 }, + { "lat": 56.1287719, "lon": 10.1607339 }, + { "lat": 56.1288071, "lon": 10.1608061 }, + { "lat": 56.1288325, "lon": 10.1607662 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1557694261, + "bounds": { + "minlat": 56.1297186, + "minlon": 10.1613185, + "maxlat": 56.1297971, + "maxlon": 10.1613821 + }, + "geometry": [ + { "lat": 56.1297186, "lon": 10.1613718 }, + { "lat": 56.1297556, "lon": 10.1613185 }, + { "lat": 56.1297971, "lon": 10.1613296 }, + { "lat": 56.1297587, "lon": 10.1613821 }, + { "lat": 56.1297186, "lon": 10.1613718 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1557694262, + "bounds": { + "minlat": 56.1300240, + "minlon": 10.1603511, + "maxlat": 56.1300782, + "maxlon": 10.1604533 + }, + "geometry": [ + { "lat": 56.1300240, "lon": 10.1603864 }, + { "lat": 56.1300518, "lon": 10.1604533 }, + { "lat": 56.1300782, "lon": 10.1604179 }, + { "lat": 56.1300504, "lon": 10.1603511 }, + { "lat": 56.1300240, "lon": 10.1603864 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1557694263, + "bounds": { + "minlat": 56.1300695, + "minlon": 10.1608180, + "maxlat": 56.1301516, + "maxlon": 10.1608797 + }, + "geometry": [ + { "lat": 56.1300695, "lon": 10.1608698 }, + { "lat": 56.1301179, "lon": 10.1608797 }, + { "lat": 56.1301516, "lon": 10.1608336 }, + { "lat": 56.1301057, "lon": 10.1608180 }, + { "lat": 56.1300695, "lon": 10.1608698 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1557695362, + "bounds": { + "minlat": 56.1212476, + "minlon": 10.1607054, + "maxlat": 56.1213010, + "maxlon": 10.1607938 + }, + "geometry": [ + { "lat": 56.1212476, "lon": 10.1607559 }, + { "lat": 56.1212853, "lon": 10.1607938 }, + { "lat": 56.1213010, "lon": 10.1607432 }, + { "lat": 56.1212634, "lon": 10.1607054 }, + { "lat": 56.1212476, "lon": 10.1607559 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1557695363, + "bounds": { + "minlat": 56.1212634, + "minlon": 10.1606504, + "maxlat": 56.1213182, + "maxlon": 10.1607432 + }, + "geometry": [ + { "lat": 56.1213010, "lon": 10.1607432 }, + { "lat": 56.1213182, "lon": 10.1606878 }, + { "lat": 56.1212803, "lon": 10.1606504 }, + { "lat": 56.1212634, "lon": 10.1607054 }, + { "lat": 56.1213010, "lon": 10.1607432 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1557697252, + "bounds": { + "minlat": 56.1135657, + "minlon": 10.1736741, + "maxlat": 56.1136096, + "maxlon": 10.1737630 + }, + "geometry": [ + { "lat": 56.1135767, "lon": 10.1737630 }, + { "lat": 56.1136096, "lon": 10.1737470 }, + { "lat": 56.1135985, "lon": 10.1736741 }, + { "lat": 56.1135657, "lon": 10.1736901 }, + { "lat": 56.1135767, "lon": 10.1737630 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1557697253, + "bounds": { + "minlat": 56.1136163, + "minlon": 10.1736490, + "maxlat": 56.1136604, + "maxlon": 10.1737382 + }, + "geometry": [ + { "lat": 56.1136274, "lon": 10.1737382 }, + { "lat": 56.1136604, "lon": 10.1737220 }, + { "lat": 56.1136492, "lon": 10.1736490 }, + { "lat": 56.1136163, "lon": 10.1736652 }, + { "lat": 56.1136274, "lon": 10.1737382 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1557697625, + "bounds": { + "minlat": 56.1193538, + "minlon": 10.1807630, + "maxlat": 56.1194000, + "maxlon": 10.1808420 + }, + "geometry": [ + { "lat": 56.1193550, "lon": 10.1808420 }, + { "lat": 56.1194000, "lon": 10.1808329 }, + { "lat": 56.1193991, "lon": 10.1808249 }, + { "lat": 56.1194000, "lon": 10.1807729 }, + { "lat": 56.1193545, "lon": 10.1807630 }, + { "lat": 56.1193538, "lon": 10.1808046 }, + { "lat": 56.1193550, "lon": 10.1808420 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1557697626, + "bounds": { + "minlat": 56.1193550, + "minlon": 10.1808329, + "maxlat": 56.1194077, + "maxlon": 10.1809200 + }, + "geometry": [ + { "lat": 56.1194000, "lon": 10.1808329 }, + { "lat": 56.1194050, "lon": 10.1808759 }, + { "lat": 56.1194077, "lon": 10.1808864 }, + { "lat": 56.1193663, "lon": 10.1809200 }, + { "lat": 56.1193594, "lon": 10.1808814 }, + { "lat": 56.1193550, "lon": 10.1808420 }, + { "lat": 56.1194000, "lon": 10.1808329 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1557697627, + "bounds": { + "minlat": 56.1193769, + "minlon": 10.1809231, + "maxlat": 56.1194317, + "maxlon": 10.1810099 + }, + "geometry": [ + { "lat": 56.1194172, "lon": 10.1809231 }, + { "lat": 56.1193769, "lon": 10.1809612 }, + { "lat": 56.1193974, "lon": 10.1810099 }, + { "lat": 56.1194317, "lon": 10.1809562 }, + { "lat": 56.1194172, "lon": 10.1809231 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1557697628, + "bounds": { + "minlat": 56.1190393, + "minlon": 10.1806951, + "maxlat": 56.1191158, + "maxlon": 10.1807858 + }, + "geometry": [ + { "lat": 56.1190393, "lon": 10.1807850 }, + { "lat": 56.1190684, "lon": 10.1807844 }, + { "lat": 56.1191123, "lon": 10.1807858 }, + { "lat": 56.1191158, "lon": 10.1807109 }, + { "lat": 56.1190434, "lon": 10.1806951 }, + { "lat": 56.1190393, "lon": 10.1807850 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1557698974, + "bounds": { + "minlat": 56.1090227, + "minlon": 10.1560589, + "maxlat": 56.1090716, + "maxlon": 10.1561528 + }, + "geometry": [ + { "lat": 56.1090227, "lon": 10.1561231 }, + { "lat": 56.1090505, "lon": 10.1560589 }, + { "lat": 56.1090716, "lon": 10.1560923 }, + { "lat": 56.1090446, "lon": 10.1561528 }, + { "lat": 56.1090227, "lon": 10.1561231 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1557698975, + "bounds": { + "minlat": 56.1090446, + "minlon": 10.1560923, + "maxlat": 56.1090958, + "maxlon": 10.1561875 + }, + "geometry": [ + { "lat": 56.1090716, "lon": 10.1560923 }, + { "lat": 56.1090958, "lon": 10.1561270 }, + { "lat": 56.1090878, "lon": 10.1561447 }, + { "lat": 56.1090687, "lon": 10.1561875 }, + { "lat": 56.1090446, "lon": 10.1561528 }, + { "lat": 56.1090716, "lon": 10.1560923 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1557728505, + "bounds": { + "minlat": 56.1383872, + "minlon": 10.1137685, + "maxlat": 56.1384383, + "maxlon": 10.1138649 + }, + "geometry": [ + { "lat": 56.1383872, "lon": 10.1138649 }, + { "lat": 56.1384211, "lon": 10.1138437 }, + { "lat": 56.1384383, "lon": 10.1137685 }, + { "lat": 56.1384036, "lon": 10.1137922 }, + { "lat": 56.1383872, "lon": 10.1138649 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1557728506, + "bounds": { + "minlat": 56.1384036, + "minlon": 10.1136960, + "maxlat": 56.1384548, + "maxlon": 10.1137922 + }, + "geometry": [ + { "lat": 56.1384036, "lon": 10.1137922 }, + { "lat": 56.1384210, "lon": 10.1137175 }, + { "lat": 56.1384548, "lon": 10.1136960 }, + { "lat": 56.1384383, "lon": 10.1137685 }, + { "lat": 56.1384036, "lon": 10.1137922 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1557791015, + "bounds": { + "minlat": 56.1872195, + "minlon": 10.1725058, + "maxlat": 56.1872867, + "maxlon": 10.1725793 + }, + "geometry": [ + { "lat": 56.1872320, "lon": 10.1725677 }, + { "lat": 56.1872867, "lon": 10.1725793 }, + { "lat": 56.1872718, "lon": 10.1725131 }, + { "lat": 56.1872195, "lon": 10.1725058 }, + { "lat": 56.1872320, "lon": 10.1725677 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1557791016, + "bounds": { + "minlat": 56.1872320, + "minlon": 10.1725677, + "maxlat": 56.1873007, + "maxlon": 10.1726412 + }, + "geometry": [ + { "lat": 56.1872320, "lon": 10.1725677 }, + { "lat": 56.1872464, "lon": 10.1726320 }, + { "lat": 56.1873007, "lon": 10.1726412 }, + { "lat": 56.1872867, "lon": 10.1725793 }, + { "lat": 56.1872320, "lon": 10.1725677 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1557791640, + "bounds": { + "minlat": 56.1898151, + "minlon": 10.1806955, + "maxlat": 56.1898655, + "maxlon": 10.1807658 + }, + "geometry": [ + { "lat": 56.1898151, "lon": 10.1807481 }, + { "lat": 56.1898596, "lon": 10.1807658 }, + { "lat": 56.1898655, "lon": 10.1807126 }, + { "lat": 56.1898219, "lon": 10.1806955 }, + { "lat": 56.1898151, "lon": 10.1807481 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1557795209, + "bounds": { + "minlat": 56.1948429, + "minlon": 10.1703783, + "maxlat": 56.1948840, + "maxlon": 10.1704740 + }, + "geometry": [ + { "lat": 56.1948582, "lon": 10.1704740 }, + { "lat": 56.1948429, "lon": 10.1704026 }, + { "lat": 56.1948639, "lon": 10.1703783 }, + { "lat": 56.1948840, "lon": 10.1704477 }, + { "lat": 56.1948582, "lon": 10.1704740 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1557795210, + "bounds": { + "minlat": 56.1948051, + "minlon": 10.1701861, + "maxlat": 56.1948504, + "maxlon": 10.1702902 + }, + "geometry": [ + { "lat": 56.1948223, "lon": 10.1701861 }, + { "lat": 56.1948504, "lon": 10.1702575 }, + { "lat": 56.1948242, "lon": 10.1702902 }, + { "lat": 56.1948051, "lon": 10.1702161 }, + { "lat": 56.1948223, "lon": 10.1701861 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1557795475, + "bounds": { + "minlat": 56.1920193, + "minlon": 10.1649168, + "maxlat": 56.1920794, + "maxlon": 10.1650229 + }, + "geometry": [ + { "lat": 56.1920432, "lon": 10.1650229 }, + { "lat": 56.1920794, "lon": 10.1649823 }, + { "lat": 56.1920568, "lon": 10.1649168 }, + { "lat": 56.1920193, "lon": 10.1649593 }, + { "lat": 56.1920432, "lon": 10.1650229 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1557795956, + "bounds": { + "minlat": 56.1942807, + "minlon": 10.1646784, + "maxlat": 56.1943541, + "maxlon": 10.1648268 + }, + "geometry": [ + { "lat": 56.1942807, "lon": 10.1647870 }, + { "lat": 56.1943209, "lon": 10.1646784 }, + { "lat": 56.1943541, "lon": 10.1647179 }, + { "lat": 56.1943139, "lon": 10.1648268 }, + { "lat": 56.1942807, "lon": 10.1647870 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1557795957, + "bounds": { + "minlat": 56.1943139, + "minlon": 10.1647179, + "maxlat": 56.1943887, + "maxlon": 10.1648679 + }, + "geometry": [ + { "lat": 56.1943541, "lon": 10.1647179 }, + { "lat": 56.1943887, "lon": 10.1647592 }, + { "lat": 56.1943733, "lon": 10.1648026 }, + { "lat": 56.1943488, "lon": 10.1648679 }, + { "lat": 56.1943139, "lon": 10.1648268 }, + { "lat": 56.1943541, "lon": 10.1647179 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1557795958, + "bounds": { + "minlat": 56.1943488, + "minlon": 10.1648026, + "maxlat": 56.1943993, + "maxlon": 10.1648985 + }, + "geometry": [ + { "lat": 56.1943733, "lon": 10.1648026 }, + { "lat": 56.1943993, "lon": 10.1648356 }, + { "lat": 56.1943764, "lon": 10.1648985 }, + { "lat": 56.1943488, "lon": 10.1648679 }, + { "lat": 56.1943733, "lon": 10.1648026 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1557795959, + "bounds": { + "minlat": 56.1943764, + "minlon": 10.1648356, + "maxlat": 56.1944247, + "maxlon": 10.1649285 + }, + "geometry": [ + { "lat": 56.1943993, "lon": 10.1648356 }, + { "lat": 56.1944247, "lon": 10.1648642 }, + { "lat": 56.1944021, "lon": 10.1649285 }, + { "lat": 56.1943764, "lon": 10.1648985 }, + { "lat": 56.1943993, "lon": 10.1648356 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1557795960, + "bounds": { + "minlat": 56.1944021, + "minlon": 10.1648642, + "maxlat": 56.1944510, + "maxlon": 10.1649591 + }, + "geometry": [ + { "lat": 56.1944247, "lon": 10.1648642 }, + { "lat": 56.1944510, "lon": 10.1648930 }, + { "lat": 56.1944266, "lon": 10.1649591 }, + { "lat": 56.1944021, "lon": 10.1649285 }, + { "lat": 56.1944247, "lon": 10.1648642 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1557795961, + "bounds": { + "minlat": 56.1944266, + "minlon": 10.1648930, + "maxlat": 56.1944778, + "maxlon": 10.1649912 + }, + "geometry": [ + { "lat": 56.1944510, "lon": 10.1648930 }, + { "lat": 56.1944778, "lon": 10.1649251 }, + { "lat": 56.1944535, "lon": 10.1649912 }, + { "lat": 56.1944266, "lon": 10.1649591 }, + { "lat": 56.1944510, "lon": 10.1648930 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1557796105, + "bounds": { + "minlat": 56.1866183, + "minlon": 10.1681097, + "maxlat": 56.1866765, + "maxlon": 10.1682147 + }, + "geometry": [ + { "lat": 56.1866412, "lon": 10.1681097 }, + { "lat": 56.1866765, "lon": 10.1681743 }, + { "lat": 56.1866536, "lon": 10.1682147 }, + { "lat": 56.1866183, "lon": 10.1681501 }, + { "lat": 56.1866412, "lon": 10.1681097 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1557796348, + "bounds": { + "minlat": 56.1689549, + "minlon": 10.1594770, + "maxlat": 56.1689974, + "maxlon": 10.1595652 + }, + "geometry": [ + { "lat": 56.1689720, "lon": 10.1595652 }, + { "lat": 56.1689549, "lon": 10.1595444 }, + { "lat": 56.1689803, "lon": 10.1594770 }, + { "lat": 56.1689974, "lon": 10.1594978 }, + { "lat": 56.1689720, "lon": 10.1595652 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1557797532, + "bounds": { + "minlat": 56.1880676, + "minlon": 10.1098777, + "maxlat": 56.1881162, + "maxlon": 10.1099493 + }, + "geometry": [ + { "lat": 56.1880676, "lon": 10.1098873 }, + { "lat": 56.1881118, "lon": 10.1098777 }, + { "lat": 56.1881162, "lon": 10.1099437 }, + { "lat": 56.1880902, "lon": 10.1099493 }, + { "lat": 56.1880699, "lon": 10.1099218 }, + { "lat": 56.1880676, "lon": 10.1098873 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1557798490, + "bounds": { + "minlat": 56.1532618, + "minlon": 10.1166632, + "maxlat": 56.1533096, + "maxlon": 10.1167357 + }, + "geometry": [ + { "lat": 56.1532618, "lon": 10.1166763 }, + { "lat": 56.1533039, "lon": 10.1166632 }, + { "lat": 56.1533096, "lon": 10.1167227 }, + { "lat": 56.1532676, "lon": 10.1167357 }, + { "lat": 56.1532618, "lon": 10.1166763 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1557798491, + "bounds": { + "minlat": 56.1532676, + "minlon": 10.1167227, + "maxlat": 56.1533152, + "maxlon": 10.1167947 + }, + "geometry": [ + { "lat": 56.1533096, "lon": 10.1167227 }, + { "lat": 56.1533152, "lon": 10.1167816 }, + { "lat": 56.1532733, "lon": 10.1167947 }, + { "lat": 56.1532676, "lon": 10.1167357 }, + { "lat": 56.1533096, "lon": 10.1167227 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1557798492, + "bounds": { + "minlat": 56.1532733, + "minlon": 10.1167816, + "maxlat": 56.1533209, + "maxlon": 10.1168532 + }, + "geometry": [ + { "lat": 56.1533152, "lon": 10.1167816 }, + { "lat": 56.1533209, "lon": 10.1168395 }, + { "lat": 56.1532791, "lon": 10.1168532 }, + { "lat": 56.1532733, "lon": 10.1167947 }, + { "lat": 56.1533152, "lon": 10.1167816 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1557798493, + "bounds": { + "minlat": 56.1531351, + "minlon": 10.1180861, + "maxlat": 56.1531804, + "maxlon": 10.1181516 + }, + "geometry": [ + { "lat": 56.1531804, "lon": 10.1180931 }, + { "lat": 56.1531773, "lon": 10.1181516 }, + { "lat": 56.1531351, "lon": 10.1181450 }, + { "lat": 56.1531379, "lon": 10.1180861 }, + { "lat": 56.1531804, "lon": 10.1180931 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1557798494, + "bounds": { + "minlat": 56.1531319, + "minlon": 10.1181450, + "maxlat": 56.1531773, + "maxlon": 10.1182114 + }, + "geometry": [ + { "lat": 56.1531773, "lon": 10.1181516 }, + { "lat": 56.1531741, "lon": 10.1182114 }, + { "lat": 56.1531319, "lon": 10.1182036 }, + { "lat": 56.1531351, "lon": 10.1181450 }, + { "lat": 56.1531773, "lon": 10.1181516 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1557798495, + "bounds": { + "minlat": 56.1531297, + "minlon": 10.1182036, + "maxlat": 56.1531741, + "maxlon": 10.1182515 + }, + "geometry": [ + { "lat": 56.1531741, "lon": 10.1182114 }, + { "lat": 56.1531719, "lon": 10.1182515 }, + { "lat": 56.1531297, "lon": 10.1182438 }, + { "lat": 56.1531319, "lon": 10.1182036 }, + { "lat": 56.1531741, "lon": 10.1182114 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1557798496, + "bounds": { + "minlat": 56.1531269, + "minlon": 10.1182438, + "maxlat": 56.1531719, + "maxlon": 10.1183021 + }, + "geometry": [ + { "lat": 56.1531719, "lon": 10.1182515 }, + { "lat": 56.1531692, "lon": 10.1183021 }, + { "lat": 56.1531269, "lon": 10.1182965 }, + { "lat": 56.1531297, "lon": 10.1182438 }, + { "lat": 56.1531719, "lon": 10.1182515 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1557798734, + "bounds": { + "minlat": 56.1302598, + "minlon": 10.1147985, + "maxlat": 56.1302860, + "maxlon": 10.1148804 + }, + "geometry": [ + { "lat": 56.1302598, "lon": 10.1148775 }, + { "lat": 56.1302830, "lon": 10.1148804 }, + { "lat": 56.1302860, "lon": 10.1148014 }, + { "lat": 56.1302629, "lon": 10.1147985 }, + { "lat": 56.1302598, "lon": 10.1148775 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1557799603, + "bounds": { + "minlat": 56.1285953, + "minlon": 10.1580423, + "maxlat": 56.1286770, + "maxlon": 10.1581975 + }, + "geometry": [ + { "lat": 56.1285953, "lon": 10.1580887 }, + { "lat": 56.1286263, "lon": 10.1580423 }, + { "lat": 56.1286770, "lon": 10.1581511 }, + { "lat": 56.1286460, "lon": 10.1581975 }, + { "lat": 56.1285953, "lon": 10.1580887 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1557799604, + "bounds": { + "minlat": 56.1286882, + "minlon": 10.1579437, + "maxlat": 56.1287380, + "maxlon": 10.1580320 + }, + "geometry": [ + { "lat": 56.1286882, "lon": 10.1579868 }, + { "lat": 56.1287093, "lon": 10.1580320 }, + { "lat": 56.1287380, "lon": 10.1579889 }, + { "lat": 56.1287168, "lon": 10.1579437 }, + { "lat": 56.1286882, "lon": 10.1579868 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1557840753, + "bounds": { + "minlat": 56.0960764, + "minlon": 10.1359120, + "maxlat": 56.0961285, + "maxlon": 10.1360112 + }, + "geometry": [ + { "lat": 56.0960764, "lon": 10.1359442 }, + { "lat": 56.0961000, "lon": 10.1360112 }, + { "lat": 56.0961285, "lon": 10.1359790 }, + { "lat": 56.0961048, "lon": 10.1359120 }, + { "lat": 56.0960764, "lon": 10.1359442 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1557840754, + "bounds": { + "minlat": 56.0963753, + "minlon": 10.1355622, + "maxlat": 56.0964427, + "maxlon": 10.1356654 + }, + "geometry": [ + { "lat": 56.0964427, "lon": 10.1356096 }, + { "lat": 56.0963913, "lon": 10.1356654 }, + { "lat": 56.0963753, "lon": 10.1356180 }, + { "lat": 56.0964267, "lon": 10.1355622 }, + { "lat": 56.0964427, "lon": 10.1356096 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "2", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1557845987, + "bounds": { + "minlat": 56.1670137, + "minlon": 10.2254496, + "maxlat": 56.1670946, + "maxlon": 10.2255803 + }, + "geometry": [ + { "lat": 56.1670768, "lon": 10.2254496 }, + { "lat": 56.1670946, "lon": 10.2255091 }, + { "lat": 56.1670322, "lon": 10.2255803 }, + { "lat": 56.1670137, "lon": 10.2255241 }, + { "lat": 56.1670768, "lon": 10.2254496 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1557845988, + "bounds": { + "minlat": 56.1669549, + "minlon": 10.2255241, + "maxlat": 56.1670322, + "maxlon": 10.2256517 + }, + "geometry": [ + { "lat": 56.1670137, "lon": 10.2255241 }, + { "lat": 56.1669549, "lon": 10.2255935 }, + { "lat": 56.1669727, "lon": 10.2256517 }, + { "lat": 56.1670322, "lon": 10.2255803 }, + { "lat": 56.1670137, "lon": 10.2255241 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1557845989, + "bounds": { + "minlat": 56.1668949, + "minlon": 10.2255935, + "maxlat": 56.1669727, + "maxlon": 10.2257215 + }, + "geometry": [ + { "lat": 56.1669549, "lon": 10.2255935 }, + { "lat": 56.1668949, "lon": 10.2256642 }, + { "lat": 56.1669131, "lon": 10.2257215 }, + { "lat": 56.1669727, "lon": 10.2256517 }, + { "lat": 56.1669549, "lon": 10.2255935 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1557845990, + "bounds": { + "minlat": 56.1668299, + "minlon": 10.2256642, + "maxlat": 56.1669131, + "maxlon": 10.2257971 + }, + "geometry": [ + { "lat": 56.1668949, "lon": 10.2256642 }, + { "lat": 56.1668299, "lon": 10.2257409 }, + { "lat": 56.1668485, "lon": 10.2257971 }, + { "lat": 56.1669131, "lon": 10.2257215 }, + { "lat": 56.1668949, "lon": 10.2256642 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1557864914, + "bounds": { + "minlat": 56.1423242, + "minlon": 10.2025469, + "maxlat": 56.1423680, + "maxlon": 10.2026303 + }, + "geometry": [ + { "lat": 56.1423242, "lon": 10.2025742 }, + { "lat": 56.1423481, "lon": 10.2025469 }, + { "lat": 56.1423680, "lon": 10.2026030 }, + { "lat": 56.1423441, "lon": 10.2026303 }, + { "lat": 56.1423242, "lon": 10.2025742 } + ], + "tags": { + "amenity": "parking", + "capacity": "1", + "capacity:disabled": "1", + "parking": "street_side" + } +}, +{ + "type": "way", + "id": 1557875078, + "bounds": { + "minlat": 56.1743782, + "minlon": 10.2179861, + "maxlat": 56.1744125, + "maxlon": 10.2181069 + }, + "geometry": [ + { "lat": 56.1743782, "lon": 10.2180985 }, + { "lat": 56.1743971, "lon": 10.2181069 }, + { "lat": 56.1744125, "lon": 10.2179957 }, + { "lat": 56.1743937, "lon": 10.2179861 }, + { "lat": 56.1743782, "lon": 10.2180985 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1557875079, + "bounds": { + "minlat": 56.1743937, + "minlon": 10.2178945, + "maxlat": 56.1744253, + "maxlon": 10.2179957 + }, + "geometry": [ + { "lat": 56.1744125, "lon": 10.2179957 }, + { "lat": 56.1744253, "lon": 10.2179029 }, + { "lat": 56.1744063, "lon": 10.2178945 }, + { "lat": 56.1743937, "lon": 10.2179861 }, + { "lat": 56.1744125, "lon": 10.2179957 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1557914994, + "bounds": { + "minlat": 56.1688988, + "minlon": 10.1960691, + "maxlat": 56.1689601, + "maxlon": 10.1961674 + }, + "geometry": [ + { "lat": 56.1689420, "lon": 10.1960691 }, + { "lat": 56.1689601, "lon": 10.1961184 }, + { "lat": 56.1689160, "lon": 10.1961674 }, + { "lat": 56.1688988, "lon": 10.1961188 }, + { "lat": 56.1689420, "lon": 10.1960691 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1557915187, + "bounds": { + "minlat": 56.1693807, + "minlon": 10.1975831, + "maxlat": 56.1694309, + "maxlon": 10.1976667 + }, + "geometry": [ + { "lat": 56.1694150, "lon": 10.1975831 }, + { "lat": 56.1694309, "lon": 10.1976334 }, + { "lat": 56.1693956, "lon": 10.1976667 }, + { "lat": 56.1693807, "lon": 10.1976174 }, + { "lat": 56.1694150, "lon": 10.1975831 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1557957578, + "bounds": { + "minlat": 56.1329284, + "minlon": 10.1953992, + "maxlat": 56.1329779, + "maxlon": 10.1954980 + }, + "geometry": [ + { "lat": 56.1329469, "lon": 10.1954980 }, + { "lat": 56.1329779, "lon": 10.1954731 }, + { "lat": 56.1329594, "lon": 10.1953992 }, + { "lat": 56.1329284, "lon": 10.1954242 }, + { "lat": 56.1329469, "lon": 10.1954980 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1557957579, + "bounds": { + "minlat": 56.1329594, + "minlon": 10.1953792, + "maxlat": 56.1330025, + "maxlon": 10.1954731 + }, + "geometry": [ + { "lat": 56.1329779, "lon": 10.1954731 }, + { "lat": 56.1330025, "lon": 10.1954534 }, + { "lat": 56.1329840, "lon": 10.1953792 }, + { "lat": 56.1329594, "lon": 10.1953992 }, + { "lat": 56.1329779, "lon": 10.1954731 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1557957580, + "bounds": { + "minlat": 56.1329840, + "minlon": 10.1953563, + "maxlat": 56.1330313, + "maxlon": 10.1954534 + }, + "geometry": [ + { "lat": 56.1330025, "lon": 10.1954534 }, + { "lat": 56.1330313, "lon": 10.1954302 }, + { "lat": 56.1330122, "lon": 10.1953563 }, + { "lat": 56.1329840, "lon": 10.1953792 }, + { "lat": 56.1330025, "lon": 10.1954534 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1557957581, + "bounds": { + "minlat": 56.1330122, + "minlon": 10.1953335, + "maxlat": 56.1330587, + "maxlon": 10.1954302 + }, + "geometry": [ + { "lat": 56.1330313, "lon": 10.1954302 }, + { "lat": 56.1330587, "lon": 10.1954077 }, + { "lat": 56.1330396, "lon": 10.1953335 }, + { "lat": 56.1330122, "lon": 10.1953563 }, + { "lat": 56.1330313, "lon": 10.1954302 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1557957582, + "bounds": { + "minlat": 56.1330396, + "minlon": 10.1953112, + "maxlat": 56.1330853, + "maxlon": 10.1954077 + }, + "geometry": [ + { "lat": 56.1330587, "lon": 10.1954077 }, + { "lat": 56.1330853, "lon": 10.1953859 }, + { "lat": 56.1330664, "lon": 10.1953112 }, + { "lat": 56.1330396, "lon": 10.1953335 }, + { "lat": 56.1330587, "lon": 10.1954077 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1557958747, + "bounds": { + "minlat": 56.1071747, + "minlon": 10.2057512, + "maxlat": 56.1072075, + "maxlon": 10.2058488 + }, + "geometry": [ + { "lat": 56.1072075, "lon": 10.2058474 }, + { "lat": 56.1072065, "lon": 10.2057512 }, + { "lat": 56.1071747, "lon": 10.2057519 }, + { "lat": 56.1071760, "lon": 10.2058488 }, + { "lat": 56.1072075, "lon": 10.2058474 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1557958748, + "bounds": { + "minlat": 56.1072065, + "minlon": 10.2057501, + "maxlat": 56.1072419, + "maxlon": 10.2058474 + }, + "geometry": [ + { "lat": 56.1072075, "lon": 10.2058474 }, + { "lat": 56.1072419, "lon": 10.2058463 }, + { "lat": 56.1072409, "lon": 10.2057501 }, + { "lat": 56.1072065, "lon": 10.2057512 }, + { "lat": 56.1072075, "lon": 10.2058474 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1558044753, + "bounds": { + "minlat": 56.1071313, + "minlon": 10.1024018, + "maxlat": 56.1071681, + "maxlon": 10.1024946 + }, + "geometry": [ + { "lat": 56.1071335, "lon": 10.1024018 }, + { "lat": 56.1071681, "lon": 10.1024045 }, + { "lat": 56.1071659, "lon": 10.1024946 }, + { "lat": 56.1071313, "lon": 10.1024919 }, + { "lat": 56.1071335, "lon": 10.1024018 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1558044906, + "bounds": { + "minlat": 56.1093384, + "minlon": 10.0780375, + "maxlat": 56.1093836, + "maxlon": 10.0781198 + }, + "geometry": [ + { "lat": 56.1093808, "lon": 10.0780375 }, + { "lat": 56.1093384, "lon": 10.0780424 }, + { "lat": 56.1093411, "lon": 10.0781198 }, + { "lat": 56.1093836, "lon": 10.0781149 }, + { "lat": 56.1093808, "lon": 10.0780375 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1558065357, + "bounds": { + "minlat": 56.2109010, + "minlon": 10.2844079, + "maxlat": 56.2109587, + "maxlon": 10.2845038 + }, + "geometry": [ + { "lat": 56.2109010, "lon": 10.2844582 }, + { "lat": 56.2109405, "lon": 10.2845038 }, + { "lat": 56.2109587, "lon": 10.2844561 }, + { "lat": 56.2109185, "lon": 10.2844079 }, + { "lat": 56.2109010, "lon": 10.2844582 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1558065358, + "bounds": { + "minlat": 56.2109185, + "minlon": 10.2843627, + "maxlat": 56.2109755, + "maxlon": 10.2844561 + }, + "geometry": [ + { "lat": 56.2109185, "lon": 10.2844079 }, + { "lat": 56.2109353, "lon": 10.2843627 }, + { "lat": 56.2109755, "lon": 10.2844108 }, + { "lat": 56.2109587, "lon": 10.2844561 }, + { "lat": 56.2109185, "lon": 10.2844079 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1558065900, + "bounds": { + "minlat": 56.2364416, + "minlon": 10.2337784, + "maxlat": 56.2364957, + "maxlon": 10.2338602 + }, + "geometry": [ + { "lat": 56.2364844, "lon": 10.2337784 }, + { "lat": 56.2364957, "lon": 10.2338295 }, + { "lat": 56.2364529, "lon": 10.2338602 }, + { "lat": 56.2364416, "lon": 10.2338090 }, + { "lat": 56.2364844, "lon": 10.2337784 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1558065901, + "bounds": { + "minlat": 56.2364529, + "minlon": 10.2338295, + "maxlat": 56.2365069, + "maxlon": 10.2339116 + }, + "geometry": [ + { "lat": 56.2364957, "lon": 10.2338295 }, + { "lat": 56.2365069, "lon": 10.2338806 }, + { "lat": 56.2364645, "lon": 10.2339116 }, + { "lat": 56.2364529, "lon": 10.2338602 }, + { "lat": 56.2364957, "lon": 10.2338295 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1558065902, + "bounds": { + "minlat": 56.2363461, + "minlon": 10.2338495, + "maxlat": 56.2363963, + "maxlon": 10.2339256 + }, + "geometry": [ + { "lat": 56.2363858, "lon": 10.2338495 }, + { "lat": 56.2363963, "lon": 10.2338976 }, + { "lat": 56.2363566, "lon": 10.2339256 }, + { "lat": 56.2363461, "lon": 10.2338775 }, + { "lat": 56.2363858, "lon": 10.2338495 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1558065903, + "bounds": { + "minlat": 56.2363566, + "minlon": 10.2338976, + "maxlat": 56.2364071, + "maxlon": 10.2339760 + }, + "geometry": [ + { "lat": 56.2363963, "lon": 10.2338976 }, + { "lat": 56.2364071, "lon": 10.2339476 }, + { "lat": 56.2363680, "lon": 10.2339760 }, + { "lat": 56.2363566, "lon": 10.2339256 }, + { "lat": 56.2363963, "lon": 10.2338976 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1558065904, + "bounds": { + "minlat": 56.2357551, + "minlon": 10.2342611, + "maxlat": 56.2358113, + "maxlon": 10.2343743 + }, + "geometry": [ + { "lat": 56.2357551, "lon": 10.2342888 }, + { "lat": 56.2357774, "lon": 10.2343743 }, + { "lat": 56.2358113, "lon": 10.2343265 }, + { "lat": 56.2357956, "lon": 10.2342611 }, + { "lat": 56.2357551, "lon": 10.2342888 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1558073757, + "bounds": { + "minlat": 56.1783737, + "minlon": 10.2011057, + "maxlat": 56.1784244, + "maxlon": 10.2011837 + }, + "geometry": [ + { "lat": 56.1784145, "lon": 10.2011057 }, + { "lat": 56.1784244, "lon": 10.2011599 }, + { "lat": 56.1783835, "lon": 10.2011837 }, + { "lat": 56.1783737, "lon": 10.2011286 }, + { "lat": 56.1784145, "lon": 10.2011057 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1558073758, + "bounds": { + "minlat": 56.1783835, + "minlon": 10.2011599, + "maxlat": 56.1784342, + "maxlon": 10.2012366 + }, + "geometry": [ + { "lat": 56.1784244, "lon": 10.2011599 }, + { "lat": 56.1784342, "lon": 10.2012138 }, + { "lat": 56.1783929, "lon": 10.2012366 }, + { "lat": 56.1783835, "lon": 10.2011837 }, + { "lat": 56.1784244, "lon": 10.2011599 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1558073920, + "bounds": { + "minlat": 56.1789240, + "minlon": 10.2005140, + "maxlat": 56.1789814, + "maxlon": 10.2005993 + }, + "geometry": [ + { "lat": 56.1789240, "lon": 10.2005457 }, + { "lat": 56.1789699, "lon": 10.2005140 }, + { "lat": 56.1789814, "lon": 10.2005675 }, + { "lat": 56.1789354, "lon": 10.2005993 }, + { "lat": 56.1789240, "lon": 10.2005457 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1558075046, + "bounds": { + "minlat": 56.1895097, + "minlon": 10.2151869, + "maxlat": 56.1895423, + "maxlon": 10.2152598 + }, + "geometry": [ + { "lat": 56.1895423, "lon": 10.2151967 }, + { "lat": 56.1895174, "lon": 10.2151869 }, + { "lat": 56.1895097, "lon": 10.2152501 }, + { "lat": 56.1895346, "lon": 10.2152598 }, + { "lat": 56.1895423, "lon": 10.2151967 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1558075198, + "bounds": { + "minlat": 56.1870938, + "minlon": 10.2150086, + "maxlat": 56.1871554, + "maxlon": 10.2151406 + }, + "geometry": [ + { "lat": 56.1870938, "lon": 10.2150397 }, + { "lat": 56.1871277, "lon": 10.2151406 }, + { "lat": 56.1871554, "lon": 10.2151103 }, + { "lat": 56.1871214, "lon": 10.2150086 }, + { "lat": 56.1870938, "lon": 10.2150397 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1558075199, + "bounds": { + "minlat": 56.1871214, + "minlon": 10.2149803, + "maxlat": 56.1871817, + "maxlon": 10.2151103 + }, + "geometry": [ + { "lat": 56.1871554, "lon": 10.2151103 }, + { "lat": 56.1871817, "lon": 10.2150820 }, + { "lat": 56.1871477, "lon": 10.2149803 }, + { "lat": 56.1871214, "lon": 10.2150086 }, + { "lat": 56.1871554, "lon": 10.2151103 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1558075497, + "bounds": { + "minlat": 56.1995654, + "minlon": 10.1825360, + "maxlat": 56.1995974, + "maxlon": 10.1826078 + }, + "geometry": [ + { "lat": 56.1995654, "lon": 10.1825390 }, + { "lat": 56.1995675, "lon": 10.1826078 }, + { "lat": 56.1995974, "lon": 10.1826048 }, + { "lat": 56.1995953, "lon": 10.1825360 }, + { "lat": 56.1995654, "lon": 10.1825390 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1558096098, + "bounds": { + "minlat": 56.1294697, + "minlon": 10.2028060, + "maxlat": 56.1295195, + "maxlon": 10.2028829 + }, + "geometry": [ + { "lat": 56.1294697, "lon": 10.2028555 }, + { "lat": 56.1294805, "lon": 10.2028829 }, + { "lat": 56.1295195, "lon": 10.2028335 }, + { "lat": 56.1295087, "lon": 10.2028060 }, + { "lat": 56.1294697, "lon": 10.2028555 } + ], + "tags": { + "amenity": "parking", + "capacity": "1", + "capacity:disabled": "1" + } +}, +{ + "type": "way", + "id": 1558138049, + "bounds": { + "minlat": 56.1435947, + "minlon": 10.1952020, + "maxlat": 56.1436445, + "maxlon": 10.1952487 + }, + "geometry": [ + { "lat": 56.1435970, "lon": 10.1952487 }, + { "lat": 56.1435947, "lon": 10.1952113 }, + { "lat": 56.1436422, "lon": 10.1952020 }, + { "lat": 56.1436445, "lon": 10.1952394 }, + { "lat": 56.1435970, "lon": 10.1952487 } + ], + "tags": { + "amenity": "parking", + "capacity": "1", + "capacity:disabled": "1", + "parking": "street_side" + } +}, +{ + "type": "way", + "id": 1558180147, + "bounds": { + "minlat": 56.2503548, + "minlon": 10.1534300, + "maxlat": 56.2504013, + "maxlon": 10.1534931 + }, + "geometry": [ + { "lat": 56.2503573, "lon": 10.1534931 }, + { "lat": 56.2504013, "lon": 10.1534868 }, + { "lat": 56.2503988, "lon": 10.1534300 }, + { "lat": 56.2503548, "lon": 10.1534363 }, + { "lat": 56.2503573, "lon": 10.1534931 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1558180148, + "bounds": { + "minlat": 56.2502586, + "minlon": 10.1534449, + "maxlat": 56.2503016, + "maxlon": 10.1535087 + }, + "geometry": [ + { "lat": 56.2502989, "lon": 10.1534449 }, + { "lat": 56.2503016, "lon": 10.1535026 }, + { "lat": 56.2502613, "lon": 10.1535087 }, + { "lat": 56.2502586, "lon": 10.1534510 }, + { "lat": 56.2502989, "lon": 10.1534449 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1558180587, + "bounds": { + "minlat": 56.2193037, + "minlon": 10.1582418, + "maxlat": 56.2193540, + "maxlon": 10.1583301 + }, + "geometry": [ + { "lat": 56.2193037, "lon": 10.1582909 }, + { "lat": 56.2193348, "lon": 10.1583301 }, + { "lat": 56.2193540, "lon": 10.1582811 }, + { "lat": 56.2193228, "lon": 10.1582418 }, + { "lat": 56.2193037, "lon": 10.1582909 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1558180588, + "bounds": { + "minlat": 56.2193893, + "minlon": 10.1583472, + "maxlat": 56.2194424, + "maxlon": 10.1584383 + }, + "geometry": [ + { "lat": 56.2194078, "lon": 10.1583472 }, + { "lat": 56.2194424, "lon": 10.1583922 }, + { "lat": 56.2194239, "lon": 10.1584383 }, + { "lat": 56.2193893, "lon": 10.1583933 }, + { "lat": 56.2194078, "lon": 10.1583472 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1558180829, + "bounds": { + "minlat": 56.1942195, + "minlon": 10.2469410, + "maxlat": 56.1942617, + "maxlon": 10.2470349 + }, + "geometry": [ + { "lat": 56.1942275, "lon": 10.2470349 }, + { "lat": 56.1942617, "lon": 10.2470243 }, + { "lat": 56.1942537, "lon": 10.2469410 }, + { "lat": 56.1942195, "lon": 10.2469517 }, + { "lat": 56.1942275, "lon": 10.2470349 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1558180978, + "bounds": { + "minlat": 56.2712786, + "minlon": 10.3092514, + "maxlat": 56.2713341, + "maxlon": 10.3093550 + }, + "geometry": [ + { "lat": 56.2713066, "lon": 10.3093550 }, + { "lat": 56.2713341, "lon": 10.3092891 }, + { "lat": 56.2713056, "lon": 10.3092514 }, + { "lat": 56.2712786, "lon": 10.3093157 }, + { "lat": 56.2713066, "lon": 10.3093550 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1558180979, + "bounds": { + "minlat": 56.2712501, + "minlon": 10.3092126, + "maxlat": 56.2713056, + "maxlon": 10.3093157 + }, + "geometry": [ + { "lat": 56.2713056, "lon": 10.3092514 }, + { "lat": 56.2712772, "lon": 10.3092126 }, + { "lat": 56.2712501, "lon": 10.3092768 }, + { "lat": 56.2712786, "lon": 10.3093157 }, + { "lat": 56.2713056, "lon": 10.3092514 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1558181067, + "bounds": { + "minlat": 56.2766474, + "minlon": 10.3163108, + "maxlat": 56.2767015, + "maxlon": 10.3164166 + }, + "geometry": [ + { "lat": 56.2767015, "lon": 10.3163466 }, + { "lat": 56.2766787, "lon": 10.3164166 }, + { "lat": 56.2766474, "lon": 10.3163830 }, + { "lat": 56.2766714, "lon": 10.3163108 }, + { "lat": 56.2767015, "lon": 10.3163466 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1558267557, + "bounds": { + "minlat": 56.1576267, + "minlon": 10.1979978, + "maxlat": 56.1576890, + "maxlon": 10.1980504 + }, + "geometry": [ + { "lat": 56.1576267, "lon": 10.1980159 }, + { "lat": 56.1576725, "lon": 10.1979978 }, + { "lat": 56.1576890, "lon": 10.1980335 }, + { "lat": 56.1576442, "lon": 10.1980504 }, + { "lat": 56.1576267, "lon": 10.1980159 } + ], + "tags": { + "amenity": "parking", + "capacity": "1", + "capacity:disabled": "1", + "parking": "street_side" + } +}, +{ + "type": "way", + "id": 1558339580, + "bounds": { + "minlat": 56.1496634, + "minlon": 10.1994547, + "maxlat": 56.1497134, + "maxlon": 10.1995838 + }, + "geometry": [ + { "lat": 56.1497084, "lon": 10.1995100 }, + { "lat": 56.1497134, "lon": 10.1995838 }, + { "lat": 56.1496678, "lon": 10.1995328 }, + { "lat": 56.1496634, "lon": 10.1994547 }, + { "lat": 56.1497084, "lon": 10.1995100 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1558339581, + "bounds": { + "minlat": 56.1496678, + "minlon": 10.1995328, + "maxlat": 56.1497190, + "maxlon": 10.1996661 + }, + "geometry": [ + { "lat": 56.1497134, "lon": 10.1995838 }, + { "lat": 56.1497190, "lon": 10.1996661 }, + { "lat": 56.1496721, "lon": 10.1996092 }, + { "lat": 56.1496678, "lon": 10.1995328 }, + { "lat": 56.1497134, "lon": 10.1995838 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1558340155, + "bounds": { + "minlat": 56.1496907, + "minlon": 10.1999417, + "maxlat": 56.1497450, + "maxlon": 10.2000893 + }, + "geometry": [ + { "lat": 56.1496907, "lon": 10.1999417 }, + { "lat": 56.1497396, "lon": 10.2000044 }, + { "lat": 56.1497450, "lon": 10.2000893 }, + { "lat": 56.1496959, "lon": 10.2000348 }, + { "lat": 56.1496907, "lon": 10.1999417 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1558341652, + "bounds": { + "minlat": 56.1503659, + "minlon": 10.2036038, + "maxlat": 56.1504298, + "maxlon": 10.2037311 + }, + "geometry": [ + { "lat": 56.1503659, "lon": 10.2036038 }, + { "lat": 56.1503783, "lon": 10.2036830 }, + { "lat": 56.1504298, "lon": 10.2037311 }, + { "lat": 56.1504169, "lon": 10.2036478 }, + { "lat": 56.1503659, "lon": 10.2036038 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1558341653, + "bounds": { + "minlat": 56.1503783, + "minlon": 10.2036830, + "maxlat": 56.1504432, + "maxlon": 10.2038177 + }, + "geometry": [ + { "lat": 56.1503783, "lon": 10.2036830 }, + { "lat": 56.1503912, "lon": 10.2037702 }, + { "lat": 56.1504432, "lon": 10.2038177 }, + { "lat": 56.1504358, "lon": 10.2037697 }, + { "lat": 56.1504298, "lon": 10.2037311 }, + { "lat": 56.1503783, "lon": 10.2036830 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1558358544, + "bounds": { + "minlat": 56.1178738, + "minlon": 10.1736079, + "maxlat": 56.1179165, + "maxlon": 10.1737081 + }, + "geometry": [ + { "lat": 56.1178738, "lon": 10.1737081 }, + { "lat": 56.1178738, "lon": 10.1736099 }, + { "lat": 56.1179157, "lon": 10.1736079 }, + { "lat": 56.1179165, "lon": 10.1737070 }, + { "lat": 56.1178738, "lon": 10.1737081 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1558373177, + "bounds": { + "minlat": 56.1173788, + "minlon": 10.1526739, + "maxlat": 56.1174304, + "maxlon": 10.1527640 + }, + "geometry": [ + { "lat": 56.1173986, "lon": 10.1527640 }, + { "lat": 56.1173788, "lon": 10.1527226 }, + { "lat": 56.1174109, "lon": 10.1526739 }, + { "lat": 56.1174304, "lon": 10.1527147 }, + { "lat": 56.1173986, "lon": 10.1527640 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1558373178, + "bounds": { + "minlat": 56.1173575, + "minlon": 10.1526280, + "maxlat": 56.1174109, + "maxlon": 10.1527226 + }, + "geometry": [ + { "lat": 56.1173788, "lon": 10.1527226 }, + { "lat": 56.1173575, "lon": 10.1526784 }, + { "lat": 56.1173888, "lon": 10.1526280 }, + { "lat": 56.1174109, "lon": 10.1526739 }, + { "lat": 56.1173788, "lon": 10.1527226 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1558373179, + "bounds": { + "minlat": 56.1163327, + "minlon": 10.1528661, + "maxlat": 56.1163765, + "maxlon": 10.1529590 + }, + "geometry": [ + { "lat": 56.1163467, "lon": 10.1528661 }, + { "lat": 56.1163765, "lon": 10.1528828 }, + { "lat": 56.1163619, "lon": 10.1529590 }, + { "lat": 56.1163364, "lon": 10.1529431 }, + { "lat": 56.1163327, "lon": 10.1529406 }, + { "lat": 56.1163467, "lon": 10.1528661 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1558377064, + "bounds": { + "minlat": 56.2104071, + "minlon": 10.2878990, + "maxlat": 56.2104476, + "maxlon": 10.2879856 + }, + "geometry": [ + { "lat": 56.2104273, "lon": 10.2879856 }, + { "lat": 56.2104476, "lon": 10.2879188 }, + { "lat": 56.2104274, "lon": 10.2878990 }, + { "lat": 56.2104071, "lon": 10.2879658 }, + { "lat": 56.2104273, "lon": 10.2879856 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1558377065, + "bounds": { + "minlat": 56.2108843, + "minlon": 10.2881990, + "maxlat": 56.2109164, + "maxlon": 10.2882914 + }, + "geometry": [ + { "lat": 56.2108843, "lon": 10.2882807 }, + { "lat": 56.2108917, "lon": 10.2881990 }, + { "lat": 56.2109164, "lon": 10.2882098 }, + { "lat": 56.2109088, "lon": 10.2882914 }, + { "lat": 56.2108843, "lon": 10.2882807 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1558559365, + "bounds": { + "minlat": 56.1511341, + "minlon": 10.2027002, + "maxlat": 56.1512089, + "maxlon": 10.2027739 + }, + "geometry": [ + { "lat": 56.1511383, "lon": 10.2027739 }, + { "lat": 56.1511341, "lon": 10.2027362 }, + { "lat": 56.1512037, "lon": 10.2027002 }, + { "lat": 56.1512089, "lon": 10.2027409 }, + { "lat": 56.1511383, "lon": 10.2027739 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1558604131, + "bounds": { + "minlat": 56.1770521, + "minlon": 10.2306954, + "maxlat": 56.1771407, + "maxlon": 10.2307802 + }, + "geometry": [ + { "lat": 56.1771407, "lon": 10.2307426 }, + { "lat": 56.1771193, "lon": 10.2307802 }, + { "lat": 56.1770873, "lon": 10.2307637 }, + { "lat": 56.1770565, "lon": 10.2307478 }, + { "lat": 56.1770521, "lon": 10.2306954 }, + { "lat": 56.1770935, "lon": 10.2307175 }, + { "lat": 56.1771407, "lon": 10.2307426 } + ], + "tags": { + "amenity": "parking", + "capacity": "2", + "capacity:disabled": "2", + "parking": "street_side", + "surface": "gravel" + } +}, +{ + "type": "way", + "id": 1558604132, + "bounds": { + "minlat": 56.1770873, + "minlon": 10.2307175, + "maxlat": 56.1771407, + "maxlon": 10.2307802 + }, + "geometry": [ + { "lat": 56.1771407, "lon": 10.2307426 }, + { "lat": 56.1771193, "lon": 10.2307802 }, + { "lat": 56.1770873, "lon": 10.2307637 }, + { "lat": 56.1770935, "lon": 10.2307175 }, + { "lat": 56.1771407, "lon": 10.2307426 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "way", + "id": 1558604133, + "bounds": { + "minlat": 56.1770521, + "minlon": 10.2306954, + "maxlat": 56.1770935, + "maxlon": 10.2307637 + }, + "geometry": [ + { "lat": 56.1770873, "lon": 10.2307637 }, + { "lat": 56.1770565, "lon": 10.2307478 }, + { "lat": 56.1770521, "lon": 10.2306954 }, + { "lat": 56.1770935, "lon": 10.2307175 }, + { "lat": 56.1770873, "lon": 10.2307637 } + ], + "tags": { + "amenity": "parking_space", + "capacity": "1", + "parking_space": "disabled" + } +}, +{ + "type": "relation", + "id": 17151325, + "bounds": { + "minlat": 56.0886708, + "minlon": 10.2477857, + "maxlat": 56.0888327, + "maxlon": 10.2480758 + }, + "tags": { + "access": "yes", + "amenity": "parking", + "capacity": "11", + "capacity:disabled": "1", + "fee": "no", + "orientation": "perpendicular", + "parking": "street_side", + "surface": "asphalt", + "type": "multipolygon" + } +} + + ] +} diff --git a/tests/resources/data/webkort.aarhuskommune.dk/spatialmap?page=get_geojson_opendata&datasource=invap b/tests/resources/data/webkort.aarhuskommune.dk/spatialmap?mtm_spatialmaps-handicap-parking similarity index 99% rename from tests/resources/data/webkort.aarhuskommune.dk/spatialmap?page=get_geojson_opendata&datasource=invap rename to tests/resources/data/webkort.aarhuskommune.dk/spatialmap?mtm_spatialmaps-handicap-parking index 77f0634..acf02f2 100644 --- a/tests/resources/data/webkort.aarhuskommune.dk/spatialmap?page=get_geojson_opendata&datasource=invap +++ b/tests/resources/data/webkort.aarhuskommune.dk/spatialmap?mtm_spatialmaps-handicap-parking @@ -1 +1 @@ -{ "type": "FeatureCollection","crs": {"type": "name", "properties": {"name": "EPSG:25832"}}, "bbox": [570415.7999999999,6211070.354199971,577384.3500328106,6232262.860918405],"features": [{"type": "Feature","geometry": {"type": "Point","coordinates": [575153.9524951308, 6224260.609753487]},"properties": {"vejnavn": "Domkirkeplads/Bispegade", "husnnr": "1", "invalidepladser": 6, "bemrk": null, "ident": "P", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:23.91", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:23.91", "mi_style": null, "mi_prinx": 172}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574656.6043964146, 6223886.745852402]},"properties": {"vejnavn": "Christiansgade", "husnnr": "2", "invalidepladser": 5, "bemrk": null, "ident": "P", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:23.943", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:23.943", "mi_style": null, "mi_prinx": 173}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574519.3323188772, 6223394.810052871]},"properties": {"vejnavn": "Krigersvej", "husnnr": "5", "invalidepladser": 4, "bemrk": null, "ident": "P", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:24.08", "rettet_af": "spatial_reader", "rettet_dato": "2025-07-31 10:04:59.57", "mi_style": null, "mi_prinx": 175}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574916.9504383737, 6223961.870560985]},"properties": {"vejnavn": "Telefonsmøgen / Busgaden", "husnnr": "6", "invalidepladser": 3, "bemrk": null, "ident": "P", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:24.113", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:24.113", "mi_style": null, "mi_prinx": 176}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574742.8394360626, 6224182.215710367]},"properties": {"vejnavn": "Grønnegade", "husnnr": "3", "invalidepladser": 2, "bemrk": null, "ident": "P", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:24.15", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:24.15", "mi_style": null, "mi_prinx": 177}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574727.5186573606, 6224387.563912335]},"properties": {"vejnavn": "Klostergade 1", "husnnr": "74", "invalidepladser": 2, "bemrk": null, "ident": "P", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:24.193", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:24.193", "mi_style": null, "mi_prinx": 178}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574855.8060164271, 6224401.099589322]},"properties": {"vejnavn": "Klostergade 2", "husnnr": "56", "invalidepladser": 1, "bemrk": null, "ident": "P", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:24.26", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 11:01:04.027", "mi_style": null, "mi_prinx": 179}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574504.0892603148, 6223553.9135994455]},"properties": {"vejnavn": "Skt. Nicolaus Gade", "husnnr": "1 til 3", "invalidepladser": 2, "bemrk": null, "ident": "P", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:24.363", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:24.363", "mi_style": null, "mi_prinx": 181}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574952.5463860369, 6223535.318275151]},"properties": {"vejnavn": "Ny Banegårdsgade", "husnnr": "49", "invalidepladser": 2, "bemrk": null, "ident": "P", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:24.403", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 14:16:08.26", "mi_style": null, "mi_prinx": 182}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575228.2588088225, 6224049.9438427165]},"properties": {"vejnavn": "Kannikegade", "husnnr": "16A", "invalidepladser": 2, "bemrk": "Tidsbegrænset", "ident": "P", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:24.46", "rettet_af": "spatial_reader", "rettet_dato": "2025-07-31 09:57:11.063", "mi_style": null, "mi_prinx": 183}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575319.8423906788, 6224763.017489845]},"properties": {"vejnavn": "Nørreport", "husnnr": "22", "invalidepladser": 2, "bemrk": null, "ident": "P", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:24.51", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:24.51", "mi_style": null, "mi_prinx": 184}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574890.2916237647, 6223681.297670785]},"properties": {"vejnavn": "Rosenkrantzgade", "husnnr": "24", "invalidepladser": 1, "bemrk": null, "ident": "P", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:24.557", "rettet_af": "spatial_reader", "rettet_dato": "2025-12-02 14:37:23.03", "mi_style": null, "mi_prinx": 185}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574751.5470476393, 6223649.994042548]},"properties": {"vejnavn": "Park Alle 2", "husnnr": "2", "invalidepladser": 1, "bemrk": null, "ident": "P", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:24.61", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:24.61", "mi_style": null, "mi_prinx": 186}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575067.4865718425, 6224480.395016832]},"properties": {"vejnavn": "Borggade 1", "husnnr": "9", "invalidepladser": 1, "bemrk": null, "ident": "P", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:24.657", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:24.657", "mi_style": null, "mi_prinx": 187}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574636.8473534812, 6223433.838040478]},"properties": {"vejnavn": "Orla Lehmanns Alle", "husnnr": "7", "invalidepladser": 1, "bemrk": null, "ident": "P", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:24.743", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:24.743", "mi_style": null, "mi_prinx": 188}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574714.8, 6223554.750000001]},"properties": {"vejnavn": "Johannes Bjergs Gade", "husnnr": "", "invalidepladser": 1, "bemrk": "På hjørner ved Banegårdspladsen 14", "ident": "1185", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:24.773", "rettet_af": "spatial_reader", "rettet_dato": "2020-03-17 08:49:33.863", "mi_style": null, "mi_prinx": 189}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574779.9704729278, 6223780.417495232]},"properties": {"vejnavn": "Rådhuspladsen", "husnnr": "5", "invalidepladser": 1, "bemrk": null, "ident": "P", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:24.81", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:24.81", "mi_style": null, "mi_prinx": 190}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575021.1449268986, 6223906.111910498]},"properties": {"vejnavn": "Ferdinand Sallings Stræde", "husnnr": "4", "invalidepladser": 1, "bemrk": null, "ident": "P", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:24.847", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:24.847", "mi_style": null, "mi_prinx": 191}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575028.063190263, 6223924.808104941]},"properties": {"vejnavn": "Ferdinand Sallings Stræde", "husnnr": "4", "invalidepladser": 1, "bemrk": null, "ident": "P", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:24.873", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:24.873", "mi_style": null, "mi_prinx": 192}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574539.4144572791, 6224578.814983732]},"properties": {"vejnavn": "Grønnegade", "husnnr": "91", "invalidepladser": 1, "bemrk": null, "ident": "P", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:24.907", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:24.907", "mi_style": null, "mi_prinx": 193}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574533.8732499122, 6224584.343858345]},"properties": {"vejnavn": "Grønnegade", "husnnr": "91", "invalidepladser": 1, "bemrk": null, "ident": "P", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:24.933", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:24.933", "mi_style": null, "mi_prinx": 194}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575460.8322248239, 6224695.803278689]},"properties": {"vejnavn": "Kystvejen", "husnnr": "55", "invalidepladser": 1, "bemrk": null, "ident": "P", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:24.97", "rettet_af": "spatial_reader", "rettet_dato": "2025-07-28 09:10:54.057", "mi_style": null, "mi_prinx": 195}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575461.5348009364, 6224697.442622952]},"properties": {"vejnavn": "Kystvejen", "husnnr": "55", "invalidepladser": 1, "bemrk": null, "ident": "P", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:25.003", "rettet_af": "spatial_reader", "rettet_dato": "2025-07-28 09:10:30.637", "mi_style": null, "mi_prinx": 196}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575455.3216124629, 6226039.447676172]},"properties": {"vejnavn": "Steen Billes Torv", "husnnr": "6", "invalidepladser": 1, "bemrk": null, "ident": "P", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:25.037", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:25.037", "mi_style": null, "mi_prinx": 197}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573959.1296566332, 6223167.542244217]},"properties": {"vejnavn": "Ankersgade", "husnnr": "21", "invalidepladser": 1, "bemrk": null, "ident": "P", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:25.07", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:25.07", "mi_style": null, "mi_prinx": 198}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573965.1903521908, 6223169.331879942]},"properties": {"vejnavn": "Ankersgade", "husnnr": "21", "invalidepladser": 1, "bemrk": null, "ident": "P", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:25.093", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:25.093", "mi_style": null, "mi_prinx": 199}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573771.8681415829, 6222925.054833357]},"properties": {"vejnavn": "Læssøesgade", "husnnr": "85", "invalidepladser": 1, "bemrk": null, "ident": "P", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:25.127", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 11:14:58.7", "mi_style": null, "mi_prinx": 200}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573866.0093369979, 6222685.91027901]},"properties": {"vejnavn": "Harald Jenesens Plads", "husnnr": null, "invalidepladser": 1, "bemrk": null, "ident": "P", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:25.163", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:25.163", "mi_style": null, "mi_prinx": 201}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573940.9310782718, 6222759.405319308]},"properties": {"vejnavn": "Harald Jenesens Plads", "husnnr": null, "invalidepladser": 1, "bemrk": null, "ident": "P", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:25.19", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:25.19", "mi_style": null, "mi_prinx": 202}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574372.5907076919, 6222033.218436124]},"properties": {"vejnavn": "Skovbrynet", "husnnr": null, "invalidepladser": 1, "bemrk": null, "ident": "P", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:25.297", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 11:33:25.34", "mi_style": null, "mi_prinx": 203}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574368.4426301755, 6222031.638216118]},"properties": {"vejnavn": "Skovbrynet", "husnnr": null, "invalidepladser": 1, "bemrk": null, "ident": "P", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:25.323", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 11:33:16.533", "mi_style": null, "mi_prinx": 204}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574370.6154326841, 6222032.23079862]},"properties": {"vejnavn": "Skovbrynet", "husnnr": null, "invalidepladser": 1, "bemrk": null, "ident": "P", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:25.35", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 11:33:06.723", "mi_style": null, "mi_prinx": 205}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574136.7129774133, 6222538.070841889]},"properties": {"vejnavn": "Chr. Wærums Vej", "husnnr": "29", "invalidepladser": 1, "bemrk": null, "ident": "P", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:25.387", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 09:47:59.483", "mi_style": null, "mi_prinx": 206}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574736.8941823252, 6222561.355631749]},"properties": {"vejnavn": "Dalgas Avenue", "husnnr": "33", "invalidepladser": 1, "bemrk": null, "ident": "P", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:25.427", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:25.427", "mi_style": null, "mi_prinx": 207}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574086.8495389346, 6223044.81722454]},"properties": {"vejnavn": "Max Müllers Gade", "husnnr": null, "invalidepladser": 1, "bemrk": null, "ident": "P", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:25.5", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:25.5", "mi_style": null, "mi_prinx": 209}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575326.9832918391, 6224757.308651863]},"properties": {"vejnavn": "Nørreport", "husnnr": null, "invalidepladser": 1, "bemrk": null, "ident": "P", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:25.53", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:25.53", "mi_style": null, "mi_prinx": 210}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575469.2735810118, 6224466.787786544]},"properties": {"vejnavn": "Inge Lehmanns Gade", "husnnr": null, "invalidepladser": 1, "bemrk": "Navitas", "ident": "P", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:25.567", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:25.567", "mi_style": null, "mi_prinx": 211}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575471.3432879301, 6224465.178114189]},"properties": {"vejnavn": "Inge Lehmanns Gade", "husnnr": null, "invalidepladser": 1, "bemrk": "Navitas", "ident": "P", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:25.59", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:25.59", "mi_style": null, "mi_prinx": 212}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575473.4129948484, 6224463.568441832]},"properties": {"vejnavn": "Inge Lehmanns Gade", "husnnr": null, "invalidepladser": 1, "bemrk": "Navitas", "ident": "P", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:25.617", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:25.617", "mi_style": null, "mi_prinx": 213}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575475.4744559224, 6224461.968767442]},"properties": {"vejnavn": "Inge Lehmanns Gade", "husnnr": null, "invalidepladser": 1, "bemrk": "Navitas", "ident": "P", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:25.647", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:25.647", "mi_style": null, "mi_prinx": 214}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575477.5441628407, 6224460.129141892]},"properties": {"vejnavn": "Inge Lehmanns Gade", "husnnr": null, "invalidepladser": 1, "bemrk": "Navitas", "ident": "P", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:25.673", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:25.673", "mi_style": null, "mi_prinx": 215}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575479.1521024784, 6224458.289516343]},"properties": {"vejnavn": "Inge Lehmanns Gade", "husnnr": null, "invalidepladser": 1, "bemrk": "Navitas", "ident": "P", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:25.773", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:25.773", "mi_style": null, "mi_prinx": 216}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575481.2218093968, 6224456.219937599]},"properties": {"vejnavn": "Inge Lehmanns Gade", "husnnr": null, "invalidepladser": 1, "bemrk": "Navitas", "ident": "P", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:25.797", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:25.797", "mi_style": null, "mi_prinx": 217}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575483.0523868304, 6224454.620263209]},"properties": {"vejnavn": "Inge Lehmanns Gade", "husnnr": null, "invalidepladser": 1, "bemrk": "Navitas", "ident": "P", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:25.823", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:25.823", "mi_style": null, "mi_prinx": 218}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575485.1220937488, 6224452.320731272]},"properties": {"vejnavn": "Inge Lehmanns Gade", "husnnr": null, "invalidepladser": 1, "bemrk": "Navitas", "ident": "P", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:25.847", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:25.85", "mi_style": null, "mi_prinx": 219}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575487.1918006671, 6224449.791246141]},"properties": {"vejnavn": "Inge Lehmanns Gade", "husnnr": null, "invalidepladser": 1, "bemrk": "Navitas", "ident": "P", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:25.88", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:25.88", "mi_style": null, "mi_prinx": 220}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575515.433817381, 6224381.585129299]},"properties": {"vejnavn": "Inge Lehmanns Gade", "husnnr": null, "invalidepladser": 1, "bemrk": "Navitas", "ident": "P", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:25.907", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:25.907", "mi_style": null, "mi_prinx": 221}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575517.96529158, 6224381.585129299]},"properties": {"vejnavn": "Inge Lehmanns Gade", "husnnr": null, "invalidepladser": 1, "bemrk": "Navitas", "ident": "P", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:25.93", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:25.93", "mi_style": null, "mi_prinx": 222}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575520.9502872152, 6224381.585129299]},"properties": {"vejnavn": "Inge Lehmanns Gade", "husnnr": null, "invalidepladser": 1, "bemrk": "Navitas", "ident": "P", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:25.957", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:25.957", "mi_style": null, "mi_prinx": 223}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575523.9352828503, 6224381.585129299]},"properties": {"vejnavn": "Inge Lehmanns Gade", "husnnr": null, "invalidepladser": 1, "bemrk": "Navitas", "ident": "P", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:25.983", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:25.983", "mi_style": null, "mi_prinx": 224}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575526.9202784855, 6224381.585129299]},"properties": {"vejnavn": "Inge Lehmanns Gade", "husnnr": null, "invalidepladser": 1, "bemrk": "Navitas", "ident": "P", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:26.007", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:26.007", "mi_style": null, "mi_prinx": 225}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575529.6743904804, 6224381.585129299]},"properties": {"vejnavn": "Inge Lehmanns Gade", "husnnr": null, "invalidepladser": 1, "bemrk": "Navitas", "ident": "P", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:26.033", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:26.033", "mi_style": null, "mi_prinx": 226}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575532.6593861155, 6224381.585129299]},"properties": {"vejnavn": "Inge Lehmanns Gade", "husnnr": null, "invalidepladser": 1, "bemrk": "Navitas", "ident": "P", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:26.067", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:26.067", "mi_style": null, "mi_prinx": 227}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575535.4217439546, 6224381.585129299]},"properties": {"vejnavn": "Inge Lehmanns Gade", "husnnr": null, "invalidepladser": 1, "bemrk": "Navitas", "ident": "P", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:26.09", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:26.09", "mi_style": null, "mi_prinx": 228}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575538.4067395899, 6224381.585129299]},"properties": {"vejnavn": "Inge Lehmanns Gade", "husnnr": null, "invalidepladser": 1, "bemrk": "Navitas", "ident": "P", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:26.117", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:26.117", "mi_style": null, "mi_prinx": 229}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575540.9299679445, 6224381.585129299]},"properties": {"vejnavn": "Inge Lehmanns Gade", "husnnr": null, "invalidepladser": 1, "bemrk": "Navitas", "ident": "P", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:26.157", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:26.157", "mi_style": null, "mi_prinx": 230}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574394.576202219, 6223499.304714926]},"properties": {"vejnavn": "Valdemarsgade", "husnnr": "20", "invalidepladser": 1, "bemrk": null, "ident": "1102", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:26.19", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:26.19", "mi_style": null, "mi_prinx": 231}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575033.2828097024, 6222970.362379608]},"properties": {"vejnavn": "Heibergsgade", "husnnr": "27", "invalidepladser": 1, "bemrk": null, "ident": "1104", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:26.223", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:26.223", "mi_style": null, "mi_prinx": 232}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573499.0, 6224197.1000000015]},"properties": {"vejnavn": "Regensburgsgade", "husnnr": "12", "invalidepladser": 1, "bemrk": null, "ident": "1104", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:26.257", "rettet_af": "spatial_reader", "rettet_dato": "2020-03-17 09:24:06.55", "mi_style": null, "mi_prinx": 233}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574459.3308174759, 6223990.544724442]},"properties": {"vejnavn": "Marstrandsgade", "husnnr": "2", "invalidepladser": 1, "bemrk": null, "ident": "1104", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:26.287", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:26.287", "mi_style": null, "mi_prinx": 234}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574218.7335726058, 6224300.371660066]},"properties": {"vejnavn": "Mønsgade", "husnnr": "4", "invalidepladser": 1, "bemrk": null, "ident": "1108", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:26.32", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:26.32", "mi_style": null, "mi_prinx": 235}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574841.6081590408, 6224887.112230719]},"properties": {"vejnavn": "Sjællandsgade", "husnnr": "92", "invalidepladser": 1, "bemrk": null, "ident": "1108", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:26.353", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:26.353", "mi_style": null, "mi_prinx": 236}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573564.4, 6224497.9]},"properties": {"vejnavn": "Tage Hansens Gade", "husnnr": "31B", "invalidepladser": 1, "bemrk": null, "ident": "1108", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:26.38", "rettet_af": "spatial_reader", "rettet_dato": "2020-03-17 11:49:18.623", "mi_style": null, "mi_prinx": 237}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573350.8007395364, 6225946.216653077]},"properties": {"vejnavn": "Hammershusvej", "husnnr": "41", "invalidepladser": 1, "bemrk": "Hammershusvej mellem nr. 41 og nr. 43", "ident": "1109", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:26.413", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:26.413", "mi_style": null, "mi_prinx": 238}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575124.3828974852, 6225601.696779101]},"properties": {"vejnavn": "Skt. Johannes Allé", "husnnr": "4", "invalidepladser": 1, "bemrk": "Tidsbegrænset", "ident": "1110", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:26.443", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 09:00:33.773", "mi_style": null, "mi_prinx": 239}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575252.1357631639, 6224570.226731846]},"properties": {"vejnavn": "Studsgade", "husnnr": "44", "invalidepladser": 2, "bemrk": null, "ident": "1111", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:26.473", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:26.473", "mi_style": null, "mi_prinx": 240}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574824.2671484861, 6226340.746347698]},"properties": {"vejnavn": "Skovvangsvej", "husnnr": "58", "invalidepladser": 1, "bemrk": null, "ident": "1111", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:26.507", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:26.507", "mi_style": null, "mi_prinx": 241}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575281.3650102671, 6223652.100041065]},"properties": {"vejnavn": "Toldbodgade", "husnnr": "6", "invalidepladser": 1, "bemrk": "Ud for svømmehallen", "ident": "1112", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:26.537", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 13:31:09.807", "mi_style": null, "mi_prinx": 242}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573871.8803781366, 6222609.255881792]},"properties": {"vejnavn": "Carl Bertelsens Gade", "husnnr": "3", "invalidepladser": 1, "bemrk": "I nærheden af Carl Bertelsens Gade nr. 3", "ident": "1113", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:26.567", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:26.567", "mi_style": null, "mi_prinx": 243}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574261.0265080002, 6223960.050931365]},"properties": {"vejnavn": "Jerichausgade", "husnnr": "24", "invalidepladser": 1, "bemrk": "I den eksisterende skråparkering ud for nr. 24", "ident": "1113", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:26.657", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:26.657", "mi_style": null, "mi_prinx": 245}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573354.775236487, 6224149.5423609335]},"properties": {"vejnavn": "Silkeborgvej", "husnnr": "108", "invalidepladser": 1, "bemrk": null, "ident": "1113", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:26.717", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:26.717", "mi_style": null, "mi_prinx": 246}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574302.3464337677, 6219824.742661404]},"properties": {"vejnavn": "Kridthøjtorvet", "husnnr": null, "invalidepladser": 1, "bemrk": null, "ident": "1113", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:26.763", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:26.763", "mi_style": null, "mi_prinx": 247}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574881.526291278, 6222643.79885067]},"properties": {"vejnavn": "Assensgade", "husnnr": "3", "invalidepladser": 1, "bemrk": null, "ident": "1114", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:26.92", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:26.92", "mi_style": null, "mi_prinx": 248}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574120.6245171713, 6222766.663841857]},"properties": {"vejnavn": "Ingerslev Boulevard", "husnnr": "19", "invalidepladser": 1, "bemrk": "I nærheden af Ingerslev Boulevard nr. 19", "ident": "1114", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:27.0", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:27.0", "mi_style": null, "mi_prinx": 250}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574835.6134302375, 6222775.322079497]},"properties": {"vejnavn": "Hans Broges Gade", "husnnr": "17", "invalidepladser": 2, "bemrk": "Borger ønsker pladsen tidsbegrænset, da det er ved arbejdspladsen", "ident": "1116", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:27.083", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:27.083", "mi_style": null, "mi_prinx": 252}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575090.5666900271, 6223833.916605643]},"properties": {"vejnavn": "Østergade", "husnnr": "35", "invalidepladser": 1, "bemrk": null, "ident": "1116", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:27.143", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:27.143", "mi_style": null, "mi_prinx": 253}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575371.6015553251, 6224793.341317518]},"properties": {"vejnavn": "Helgenæsgade", "husnnr": "8", "invalidepladser": 1, "bemrk": null, "ident": "1116", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:27.187", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:27.187", "mi_style": null, "mi_prinx": 254}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574443.9523178637, 6224528.715181402]},"properties": {"vejnavn": "Sejrøgade", "husnnr": "11", "invalidepladser": 1, "bemrk": "I nærheden af Sejrøgade nr.11", "ident": "1116", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:27.243", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:27.243", "mi_style": null, "mi_prinx": 255}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575462.4460219346, 6224699.380442982]},"properties": {"vejnavn": "Kystvejen", "husnnr": "55", "invalidepladser": 3, "bemrk": "Den ene af tre eksisterende HC-pladser ud for nr. 53-55 tidsbegrænset fra kl.8.00-14.00", "ident": "1118", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:27.29", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:27.29", "mi_style": null, "mi_prinx": 256}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [572618.3471282512, 6224015.439657151]},"properties": {"vejnavn": "Silkeborgvej", "husnnr": "226", "invalidepladser": 1, "bemrk": null, "ident": "gl", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:27.343", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:27.343", "mi_style": null, "mi_prinx": 257}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [572934.9133366208, 6219773.593072755]},"properties": {"vejnavn": "Rundhøj Allé", "husnnr": "137", "invalidepladser": 1, "bemrk": null, "ident": "gl", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:27.393", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:27.393", "mi_style": null, "mi_prinx": 258}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [572966.1156114371, 6219796.788351424]},"properties": {"vejnavn": "Rundhøj Allé", "husnnr": "135", "invalidepladser": 1, "bemrk": null, "ident": "gl", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:27.453", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:27.453", "mi_style": null, "mi_prinx": 259}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573958.7998228613, 6222500.128094437]},"properties": {"vejnavn": "P.P. Ørums Gade", "husnnr": "9", "invalidepladser": 1, "bemrk": null, "ident": "gl", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:27.513", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:27.513", "mi_style": null, "mi_prinx": 260}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574108.2557507273, 6222343.6199512165]},"properties": {"vejnavn": "P.P. Ørums Gade", "husnnr": "2", "invalidepladser": 2, "bemrk": null, "ident": "gl", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:27.57", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:27.57", "mi_style": null, "mi_prinx": 261}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574964.7928269794, 6222704.936406298]},"properties": {"vejnavn": "Strandparken", "husnnr": "36", "invalidepladser": 1, "bemrk": null, "ident": "gl", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:27.613", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:27.613", "mi_style": null, "mi_prinx": 262}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574986.6525602082, 6222771.112936256]},"properties": {"vejnavn": "Strandparken", "husnnr": "29", "invalidepladser": 1, "bemrk": null, "ident": "gl", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:27.65", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:27.65", "mi_style": null, "mi_prinx": 263}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574174.5193554903, 6222819.103167984]},"properties": {"vejnavn": "Ingerslevs Boulevard", "husnnr": "1", "invalidepladser": 1, "bemrk": null, "ident": "gl", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:27.7", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:27.7", "mi_style": null, "mi_prinx": 264}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574259.3031265422, 6222874.021989416]},"properties": {"vejnavn": "Lundinsgade", "husnnr": "1", "invalidepladser": 1, "bemrk": null, "ident": "gl", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:27.753", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:27.753", "mi_style": null, "mi_prinx": 265}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574732.0621175678, 6222787.729553992]},"properties": {"vejnavn": "Tietgens Plads", "husnnr": "11", "invalidepladser": 1, "bemrk": "Efter henvenddelse fra Pia Møller", "ident": "gl", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:27.81", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:27.81", "mi_style": null, "mi_prinx": 266}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574820.7791563489, 6223119.082108137]},"properties": {"vejnavn": "Brammersgade", "husnnr": "21", "invalidepladser": 1, "bemrk": null, "ident": "gl", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:27.857", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:27.857", "mi_style": null, "mi_prinx": 267}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574401.956232864, 6223179.749759412]},"properties": {"vejnavn": "Godthåbsgade", "husnnr": null, "invalidepladser": 1, "bemrk": "Overfor nr. 2", "ident": "gl", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:27.963", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:27.963", "mi_style": null, "mi_prinx": 268}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574564.0530400358, 6223225.930359485]},"properties": {"vejnavn": "Dybbølsgade", "husnnr": "15", "invalidepladser": 1, "bemrk": null, "ident": "gl", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:28.01", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:28.01", "mi_style": null, "mi_prinx": 269}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574140.167168153, 6223217.512073003]},"properties": {"vejnavn": "Absolonsgade", "husnnr": "28", "invalidepladser": 2, "bemrk": null, "ident": "gl", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:28.043", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:28.043", "mi_style": null, "mi_prinx": 270}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574275.7206025358, 6223430.478724257]},"properties": {"vejnavn": "Sonnesgade", "husnnr": "7", "invalidepladser": 3, "bemrk": null, "ident": "gl", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:28.083", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:28.083", "mi_style": null, "mi_prinx": 271}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574256.1861973983, 6223461.63238302]},"properties": {"vejnavn": "Echersbergsgade", "husnnr": "43", "invalidepladser": 2, "bemrk": null, "ident": "gl", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:28.15", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:28.15", "mi_style": null, "mi_prinx": 273}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574374.357392005, 6223467.071275949]},"properties": {"vejnavn": "Valdemarsgade", "husnnr": "28", "invalidepladser": 1, "bemrk": null, "ident": "gl", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:28.187", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:28.187", "mi_style": null, "mi_prinx": 274}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574769.5764453339, 6223465.5386415245]},"properties": {"vejnavn": "Banegårdspladsen", "husnnr": "17", "invalidepladser": 2, "bemrk": null, "ident": "gl", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:28.223", "rettet_af": "spatial_reader", "rettet_dato": "2025-07-31 09:53:06.79", "mi_style": null, "mi_prinx": 275}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574924.5695985033, 6223516.741165786]},"properties": {"vejnavn": "Ny Banegårdsgade", "husnnr": "40", "invalidepladser": 2, "bemrk": "Overfor nr. 45", "ident": "gl", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:28.26", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:28.26", "mi_style": null, "mi_prinx": 276}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575241.6470492193, 6223772.769052051]},"properties": {"vejnavn": "Ridderstræde", "husnnr": null, "invalidepladser": 1, "bemrk": "Overfor nr 1", "ident": "gl", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:28.3", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:28.3", "mi_style": null, "mi_prinx": 277}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575132.5344444042, 6223962.394105587]},"properties": {"vejnavn": "Fiskergade", "husnnr": "84", "invalidepladser": 2, "bemrk": null, "ident": "gl", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:28.367", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 14:17:48.05", "mi_style": null, "mi_prinx": 279}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574746.0553153381, 6224061.31032031]},"properties": {"vejnavn": "Christiansgade", "husnnr": "29S", "invalidepladser": 3, "bemrk": null, "ident": "gl", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:28.437", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:28.437", "mi_style": null, "mi_prinx": 281}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575181.3781732596, 6224118.438691995]},"properties": {"vejnavn": "Teatergaden", "husnnr": null, "invalidepladser": 3, "bemrk": "Sydlig endeaf vejen, på nordlig side", "ident": "E-8686", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:28.473", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:28.473", "mi_style": null, "mi_prinx": 282}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575222.3270360337, 6224141.414015435]},"properties": {"vejnavn": "Teatergaden", "husnnr": null, "invalidepladser": 4, "bemrk": "Nordlig ende af vejen , nordlig side", "ident": "E-8686", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:28.51", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:28.51", "mi_style": null, "mi_prinx": 283}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574737.7847335092, 6224144.713343865]},"properties": {"vejnavn": "Grønnegade", "husnnr": "5", "invalidepladser": 1, "bemrk": null, "ident": "gl", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:28.587", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:28.587", "mi_style": null, "mi_prinx": 285}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574634.6704505871, 6224881.683335755]},"properties": {"vejnavn": "Falstergade", "husnnr": "1", "invalidepladser": 1, "bemrk": null, "ident": "gl", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:28.66", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:28.66", "mi_style": null, "mi_prinx": 287}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573664.0273809661, 6224806.278684154]},"properties": {"vejnavn": "Eugen Warmingsvej", "husnnr": "12", "invalidepladser": 2, "bemrk": "Overfor nr. 39", "ident": "gl", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:28.703", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:28.703", "mi_style": null, "mi_prinx": 288}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573900.8397833044, 6224443.072613699]},"properties": {"vejnavn": "Eugen Warmingsvej", "husnnr": "6", "invalidepladser": 2, "bemrk": null, "ident": "gl", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:28.74", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:28.74", "mi_style": null, "mi_prinx": 289}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573876.0610211948, 6224382.904860672]},"properties": {"vejnavn": "Ringkøbingvej", "husnnr": "33", "invalidepladser": 1, "bemrk": null, "ident": "gl", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:28.777", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:28.777", "mi_style": null, "mi_prinx": 290}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573858.2335058267, 6224344.252728201]},"properties": {"vejnavn": "Ringkøbingvej", "husnnr": "27", "invalidepladser": 1, "bemrk": null, "ident": "gl", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:28.81", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:28.81", "mi_style": null, "mi_prinx": 291}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574637.7049212881, 6224717.846684231]},"properties": {"vejnavn": "Hjarnøgade", "husnnr": "5", "invalidepladser": 2, "bemrk": "Overfor nr 5", "ident": "gl", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:28.843", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:28.843", "mi_style": null, "mi_prinx": 292}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574863.3524504495, 6224285.3847106155]},"properties": {"vejnavn": "Vestergade", "husnnr": "22", "invalidepladser": 1, "bemrk": null, "ident": "gl", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:28.88", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:28.88", "mi_style": null, "mi_prinx": 293}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574537.1138667205, 6224140.554190449]},"properties": {"vejnavn": "Møllegade", "husnnr": "1", "invalidepladser": 1, "bemrk": null, "ident": "gl", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:28.917", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:28.917", "mi_style": null, "mi_prinx": 294}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575074.9490609304, 6224661.438166022]},"properties": {"vejnavn": "Anholtsgade", "husnnr": "6", "invalidepladser": 1, "bemrk": null, "ident": "gl", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:28.963", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:28.963", "mi_style": null, "mi_prinx": 295}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [572960.45896225, 6225756.165337472]},"properties": {"vejnavn": "Musvågevej", "husnnr": "4", "invalidepladser": 2, "bemrk": null, "ident": "gl", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:29.073", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:29.073", "mi_style": null, "mi_prinx": 296}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575340.1766427128, 6224351.371279241]},"properties": {"vejnavn": "Olufgade", "husnnr": "3", "invalidepladser": 1, "bemrk": "Tidsbegrænset", "ident": "gl", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:29.113", "rettet_af": "spatial_reader", "rettet_dato": "2025-07-31 10:00:13.91", "mi_style": null, "mi_prinx": 297}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573871.0393020185, 6222888.768987707]},"properties": {"vejnavn": "Max Müllers Gade", "husnnr": "13", "invalidepladser": 1, "bemrk": null, "ident": "gl", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:29.153", "rettet_af": "spatial_reader", "rettet_dato": "2020-03-17 08:09:34.883", "mi_style": null, "mi_prinx": 298}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574914.8559939226, 6222594.038979148]},"properties": {"vejnavn": "Hendrik Pontoppidans Gade", "husnnr": "34", "invalidepladser": 1, "bemrk": "5x3,5", "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:29.19", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:19.733", "mi_style": null, "mi_prinx": 299}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575638.25, 6226153.625]},"properties": {"vejnavn": "Skovvangsvej", "husnnr": "222", "invalidepladser": 1, "bemrk": "5x3,5", "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:29.26", "rettet_af": "spatial_reader", "rettet_dato": "2020-03-23 06:56:12.1", "mi_style": null, "mi_prinx": 301}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574462.8600388346, 6226572.059264624]},"properties": {"vejnavn": "Stockholmsgade", "husnnr": "1", "invalidepladser": 1, "bemrk": "5x2,5", "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:29.293", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:19.97", "mi_style": null, "mi_prinx": 302}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574497.212226172, 6224409.829380264]},"properties": {"vejnavn": "Teglværksgade", "husnnr": "3", "invalidepladser": 1, "bemrk": "Til højre for porten", "ident": "1124", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:29.38", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:20.12", "mi_style": null, "mi_prinx": 304}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575140.6024732155, 6224850.239736008]},"properties": {"vejnavn": "Høegh Guldbergs Gade", "husnnr": "45", "invalidepladser": 1, "bemrk": null, "ident": "1130", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:29.423", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:20.197", "mi_style": null, "mi_prinx": 305}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574098.9791758942, 6222367.355119992]},"properties": {"vejnavn": "P. P. Ørumsgade", "husnnr": "6", "invalidepladser": 1, "bemrk": null, "ident": "1127", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:29.467", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:20.267", "mi_style": null, "mi_prinx": 306}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573984.3949235562, 6222175.364199189]},"properties": {"vejnavn": "Ellemarksvej", "husnnr": null, "invalidepladser": 1, "bemrk": null, "ident": "1129", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:29.507", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:20.337", "mi_style": null, "mi_prinx": 307}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574502.2421911926, 6222857.645322839]},"properties": {"vejnavn": "Ingerslev Torv", "husnnr": "9", "invalidepladser": 1, "bemrk": null, "ident": "1133", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:29.543", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-10 10:03:19.153", "mi_style": null, "mi_prinx": 308}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574505.5487747552, 6222858.265196665]},"properties": {"vejnavn": "Ingerslev Torv", "husnnr": "9", "invalidepladser": 1, "bemrk": null, "ident": "1133", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:29.57", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-10 10:03:07.203", "mi_style": null, "mi_prinx": 309}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574509.0697502696, 6222858.8850704925]},"properties": {"vejnavn": "Ingerslev Torv", "husnnr": "9", "invalidepladser": 1, "bemrk": null, "ident": "1133", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:29.6", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-10 10:02:53.353", "mi_style": null, "mi_prinx": 310}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574737.586833246, 6222612.475226503]},"properties": {"vejnavn": "Assensgade", "husnnr": "19", "invalidepladser": 1, "bemrk": null, "ident": "1121", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:29.633", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:20.67", "mi_style": null, "mi_prinx": 311}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574719.5036967049, 6222608.076121928]},"properties": {"vejnavn": "Assensgade", "husnnr": "21", "invalidepladser": 2, "bemrk": null, "ident": "1128", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:29.677", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:20.737", "mi_style": null, "mi_prinx": 312}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [576416.2510775031, 6232254.552609537]},"properties": {"vejnavn": "Lystruplund", "husnnr": null, "invalidepladser": 1, "bemrk": "Ud for børnehavens indgang", "ident": "1123", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:29.717", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:20.81", "mi_style": null, "mi_prinx": 313}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573121.6899557706, 6220138.458805391]},"properties": {"vejnavn": "Rundhøj Alle", "husnnr": "61", "invalidepladser": 1, "bemrk": null, "ident": "1133", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:29.753", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:20.883", "mi_style": null, "mi_prinx": 314}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [576412.5899226356, 6232262.860918405]},"properties": {"vejnavn": "Lystruplund", "husnnr": null, "invalidepladser": 1, "bemrk": "Ud for børnehavens indgang", "ident": "1123", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:29.783", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:20.953", "mi_style": null, "mi_prinx": 315}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575079.1956707429, 6224575.955565759]},"properties": {"vejnavn": "Borggade", "husnnr": "16", "invalidepladser": 1, "bemrk": "Efter henvenddelse fra Pia Møller", "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:29.86", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:21.13", "mi_style": null, "mi_prinx": 317}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574136.9018138117, 6222534.351128438]},"properties": {"vejnavn": "Chr. Wærumsgade", "husnnr": "29", "invalidepladser": 1, "bemrk": "Efter henvenddelse fra Pia Møller", "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:29.943", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:21.277", "mi_style": null, "mi_prinx": 319}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573894.8368086569, 6224475.935924468]},"properties": {"vejnavn": "Eugen Warmingsvej", "husnnr": "6", "invalidepladser": 2, "bemrk": "Efter henvenddelse fra Pia Møller", "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:30.007", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:21.347", "mi_style": null, "mi_prinx": 320}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [576295.1526081712, 6228305.306467168]},"properties": {"vejnavn": "Fortebakken", "husnnr": "34A", "invalidepladser": 1, "bemrk": "Efter henvenddelse fra Pia Møller", "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:30.047", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:21.417", "mi_style": null, "mi_prinx": 321}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575393.7251555714, 6223907.781570643]},"properties": {"vejnavn": "Hack Kampmanns plads", "husnnr": "2", "invalidepladser": 3, "bemrk": "Efter henvenddelse fra Pia Møller", "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:30.09", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:21.487", "mi_style": null, "mi_prinx": 322}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574911.6071312699, 6222880.060760242]},"properties": {"vejnavn": "Hendrik Pontopidans gade", "husnnr": "2", "invalidepladser": 1, "bemrk": "Efter henvenddelse fra Pia Møller", "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:30.123", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:21.56", "mi_style": null, "mi_prinx": 323}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575107.1408370622, 6226017.862069859]},"properties": {"vejnavn": "Herambsgade", "husnnr": "5", "invalidepladser": 1, "bemrk": "Efter henvenddelse fra Pia Møller", "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:30.16", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:21.6", "mi_style": null, "mi_prinx": 324}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575153.6061696704, 6211381.751207897]},"properties": {"vejnavn": "Mallingsgårdsvej", "husnnr": "137", "invalidepladser": 1, "bemrk": "Efter henvenddelse fra Pia Møller", "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:30.19", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:21.65", "mi_style": null, "mi_prinx": 325}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573888.9575216738, 6222869.90282786]},"properties": {"vejnavn": "Max Mullers Gade", "husnnr": "9", "invalidepladser": 1, "bemrk": "Efter henvenddelse fra Pia Møller", "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:30.227", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:21.71", "mi_style": null, "mi_prinx": 326}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574546.3132659666, 6223169.7029371355]},"properties": {"vejnavn": "Montaangade", "husnnr": "8", "invalidepladser": 1, "bemrk": "Efter henvenddelse fra Pia Møller", "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:30.263", "rettet_af": "spatial_reader", "rettet_dato": "2025-07-24 12:58:27.443", "mi_style": null, "mi_prinx": 327}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573574.4692660668, 6222862.3343683975]},"properties": {"vejnavn": "Nordborg Gade", "husnnr": "41", "invalidepladser": 1, "bemrk": "Efter henvenddelse fra Pia Møller", "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:30.3", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:21.947", "mi_style": null, "mi_prinx": 328}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574323.8351040032, 6223091.617698438]},"properties": {"vejnavn": "Ole Rømers Gade", "husnnr": "38", "invalidepladser": 1, "bemrk": "Efter henvenddelse fra Pia Møller", "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:30.333", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:22.02", "mi_style": null, "mi_prinx": 329}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574564.1684818559, 6223099.706052078]},"properties": {"vejnavn": "Ole Rømers Gade", "husnnr": "63", "invalidepladser": 1, "bemrk": "Efter henvenddelse fra Pia Møller", "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:30.373", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:22.09", "mi_style": null, "mi_prinx": 330}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573623.1032557249, 6222316.575456046]},"properties": {"vejnavn": "Rudolp Wulffs Gade", "husnnr": "9", "invalidepladser": 1, "bemrk": "Efter henvenddelse fra Pia Møller", "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:30.473", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:22.17", "mi_style": null, "mi_prinx": 331}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [572704.5079553006, 6226851.832317628]},"properties": {"vejnavn": "Sandkåsvej", "husnnr": "27", "invalidepladser": 1, "bemrk": "Efter henvenddelse fra Pia Møller", "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:30.51", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:22.22", "mi_style": null, "mi_prinx": 332}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574883.422835466, 6227413.9079087665]},"properties": {"vejnavn": "Solhvervsvej", "husnnr": "22", "invalidepladser": 1, "bemrk": "Efter henvenddelse fra Pia Møller", "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:30.547", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:22.29", "mi_style": null, "mi_prinx": 333}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574839.5219604338, 6224676.74505035]},"properties": {"vejnavn": "Thunøgade", "husnnr": "21", "invalidepladser": 1, "bemrk": "Efter henvenddelse fra Pia Møller", "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:30.59", "rettet_af": "spatial_reader", "rettet_dato": "2020-03-17 08:26:13.553", "mi_style": null, "mi_prinx": 334}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574010.542495819, 6222959.064679222]},"properties": {"vejnavn": "Trepkasgade", "husnnr": "6", "invalidepladser": 1, "bemrk": "Efter henvenddelse fra Pia Møller", "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:30.64", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:22.437", "mi_style": null, "mi_prinx": 335}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573839.0454261499, 6225405.03680867]},"properties": {"vejnavn": "Jens Baggesens Vej", "husnnr": "78", "invalidepladser": 1, "bemrk": "Efter henvenddelse fra Pia Møller", "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:30.68", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:22.533", "mi_style": null, "mi_prinx": 336}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574665.6000000001, 6227253.1000000015]},"properties": {"vejnavn": "Vorregårds Allé", "husnnr": "95", "invalidepladser": 1, "bemrk": "Efter henvenddelse fra Pia Møller", "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:30.717", "rettet_af": "spatial_reader", "rettet_dato": "2020-03-17 10:50:45.603", "mi_style": null, "mi_prinx": 337}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574079.8900463488, 6222655.326504249]},"properties": {"vejnavn": "Ålborgade", "husnnr": "30", "invalidepladser": 1, "bemrk": "Efter henvenddelse fra Pia Møller", "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:30.753", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:22.66", "mi_style": null, "mi_prinx": 338}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575257.8748707939, 6225740.82845925]},"properties": {"vejnavn": "Niels Juels Gade", "husnnr": "86", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:30.79", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:22.73", "mi_style": "Symbol (34, 16720127, 14)", "mi_prinx": 339}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575579.6936819801, 6225552.636765125]},"properties": {"vejnavn": "Trøjborgvej", "husnnr": null, "invalidepladser": 1, "bemrk": "Ud for Kochs Skole", "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:30.86", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:22.893", "mi_style": "Symbol (34, 16720127, 14)", "mi_prinx": 341}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575354.5079200993, 6225296.238954158]},"properties": {"vejnavn": "Kirkegårdsvej", "husnnr": "53", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:30.9", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:22.95", "mi_style": "Symbol (34, 16720127, 14)", "mi_prinx": 342}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575673.3747190277, 6225441.769331871]},"properties": {"vejnavn": "Skovvejen", "husnnr": "44B", "invalidepladser": 2, "bemrk": null, "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:30.953", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:23.047", "mi_style": "Symbol (34, 16720127, 14)", "mi_prinx": 343}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575589.1104361663, 6225071.994598448]},"properties": {"vejnavn": "Skovvejen", "husnnr": "19B", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:31.007", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:23.12", "mi_style": "Symbol (34, 16720127, 14)", "mi_prinx": 344}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575246.1905094264, 6225228.322778299]},"properties": {"vejnavn": "Peter Sabroes Gade", "husnnr": "2-4", "invalidepladser": 10, "bemrk": null, "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:31.04", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:23.21", "mi_style": "Symbol (34, 16720127, 14)", "mi_prinx": 345}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575188.106782205, 6225234.641492143]},"properties": {"vejnavn": "Hospitalsgaden", "husnnr": null, "invalidepladser": 3, "bemrk": null, "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:31.08", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:23.3", "mi_style": "Symbol (34, 16720127, 14)", "mi_prinx": 346}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575106.3244984768, 6225400.537724445]},"properties": {"vejnavn": "Hospitalsgaden", "husnnr": null, "invalidepladser": 4, "bemrk": null, "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:31.117", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:23.37", "mi_style": "Symbol (34, 16720127, 14)", "mi_prinx": 347}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575064.3119217885, 6225293.259560605]},"properties": {"vejnavn": "Hospitalsgaden", "husnnr": null, "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:31.16", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:23.437", "mi_style": "Symbol (34, 16720127, 14)", "mi_prinx": 348}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575109.6475737281, 6225313.485443685]},"properties": {"vejnavn": "Hospitalsgaden", "husnnr": null, "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:31.193", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:23.503", "mi_style": "Symbol (34, 16720127, 14)", "mi_prinx": 349}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575068.0720267874, 6225440.379614743]},"properties": {"vejnavn": "Hospitalsgaden", "husnnr": null, "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:31.223", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:23.567", "mi_style": "Symbol (34, 16720127, 14)", "mi_prinx": 350}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575014.441055486, 6225637.589473247]},"properties": {"vejnavn": "Hospitalsgaden", "husnnr": null, "invalidepladser": 5, "bemrk": null, "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:31.273", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:23.637", "mi_style": "Symbol (34, 16720127, 14)", "mi_prinx": 351}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574422.6368103585, 6225613.944286156]},"properties": {"vejnavn": "Victor Albecks Vej", "husnnr": "1", "invalidepladser": 2, "bemrk": null, "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:31.303", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:23.71", "mi_style": "Symbol (34, 16720127, 14)", "mi_prinx": 352}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574900.5989291347, 6225286.400956654]},"properties": {"vejnavn": "Vennelyst Boulevard", "husnnr": "4", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:31.34", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:23.78", "mi_style": "Symbol (34, 16720127, 14)", "mi_prinx": 353}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574878.0960200508, 6225366.764598867]},"properties": {"vejnavn": "Bartholins Allé", "husnnr": null, "invalidepladser": 1, "bemrk": "V/Bartholinbygningen", "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:31.373", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:23.847", "mi_style": "Symbol (34, 16720127, 14)", "mi_prinx": 354}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574170.8004797128, 6225423.143123182]},"properties": {"vejnavn": "Gustav Wieds Vej", "husnnr": "14", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:31.41", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:23.913", "mi_style": "Symbol (34, 16720127, 14)", "mi_prinx": 355}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575117.8851721799, 6224865.706587776]},"properties": {"vejnavn": "Høegh-Guldbergs Gade", "husnnr": "49", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:31.473", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:24.033", "mi_style": "Symbol (34, 16720127, 14)", "mi_prinx": 357}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574990.5281070274, 6224945.140419249]},"properties": {"vejnavn": "Høegh-Guldbergs Gade", "husnnr": "6A", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:31.51", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:24.103", "mi_style": "Symbol (34, 16720127, 14)", "mi_prinx": 358}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574350.6093604325, 6224544.851896821]},"properties": {"vejnavn": "Langelandsgade", "husnnr": "41", "invalidepladser": 2, "bemrk": null, "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:31.597", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:24.153", "mi_style": "Symbol (34, 16720127, 14)", "mi_prinx": 359}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574519.1874012209, 6224508.419312567]},"properties": {"vejnavn": "Teglværksgade", "husnnr": "17", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:31.63", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:24.28", "mi_style": "Symbol (34, 16720127, 14)", "mi_prinx": 360}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574525.4130136644, 6224532.194473202]},"properties": {"vejnavn": "Teglværksgade", "husnnr": "19", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:31.667", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:24.357", "mi_style": "Symbol (34, 16720127, 14)", "mi_prinx": 361}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573850.8204918046, 6224325.876468635]},"properties": {"vejnavn": "Ringkøbingvej", "husnnr": "25", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:31.757", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:24.57", "mi_style": "Symbol (34, 16720127, 14)", "mi_prinx": 364}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573842.8467603703, 6224172.757635531]},"properties": {"vejnavn": "Ringkøbingvej", "husnnr": "1", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:31.787", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:24.62", "mi_style": "Symbol (34, 16720127, 14)", "mi_prinx": 365}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573685.0130546996, 6224142.763740702]},"properties": {"vejnavn": "Regenburgs Plads", "husnnr": "1", "invalidepladser": 2, "bemrk": null, "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:31.817", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:24.683", "mi_style": "Symbol (34, 16720127, 14)", "mi_prinx": 366}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573708.2663356145, 6223856.911925012]},"properties": {"vejnavn": "Åparken", "husnnr": "4", "invalidepladser": 2, "bemrk": null, "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:31.847", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:24.737", "mi_style": "Symbol (34, 16720127, 14)", "mi_prinx": 367}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573789.7847523252, 6223920.838912859]},"properties": {"vejnavn": "Åparken", "husnnr": "3", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:31.88", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:24.803", "mi_style": "Symbol (34, 16720127, 14)", "mi_prinx": 368}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574850.3899832161, 6222925.211569925]},"properties": {"vejnavn": "Odensegade", "husnnr": "6", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:31.923", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:24.9", "mi_style": "Symbol (34, 16720127, 14)", "mi_prinx": 369}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574954.056737706, 6223018.042674422]},"properties": {"vejnavn": "Marselisborg Allé", "husnnr": "18", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:31.953", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:24.97", "mi_style": "Symbol (34, 16720127, 14)", "mi_prinx": 370}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574731.5426293771, 6223104.335109847]},"properties": {"vejnavn": "Sankt Pauls Gade", "husnnr": "4", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:31.987", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:25.04", "mi_style": "Symbol (34, 16720127, 14)", "mi_prinx": 371}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574744.3401797245, 6223104.785018269]},"properties": {"vejnavn": "Sankt Pauls Gade", "husnnr": "6", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:32.027", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:25.113", "mi_style": "Symbol (34, 16720127, 14)", "mi_prinx": 372}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574725.6138673283, 6222733.070679648]},"properties": {"vejnavn": "J. Michaelsens Gade", "husnnr": "8", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:32.123", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:25.31", "mi_style": "Symbol (34, 16720127, 14)", "mi_prinx": 375}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574543.1745622781, 6223191.127443518]},"properties": {"vejnavn": "Montanagade", "husnnr": "4A", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:32.153", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:25.35", "mi_style": "Symbol (34, 16720127, 14)", "mi_prinx": 376}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574802.1600399285, 6223111.60363036]},"properties": {"vejnavn": "Brammersgade", "husnnr": "18", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:32.187", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:25.393", "mi_style": "Symbol (34, 16720127, 14)", "mi_prinx": 377}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574870.3036971911, 6223125.000903384]},"properties": {"vejnavn": "Brammersgade", "husnnr": null, "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:32.217", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:25.43", "mi_style": "Symbol (34, 16720127, 14)", "mi_prinx": 378}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574949.7603455347, 6223146.6087693]},"properties": {"vejnavn": "St. St. Blichers Gade", "husnnr": "28", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:32.257", "rettet_af": "spatial_reader", "rettet_dato": "2025-07-31 10:03:17.84", "mi_style": "Symbol (34, 16720127, 14)", "mi_prinx": 379}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574131.5007857978, 6222588.660074009]},"properties": {"vejnavn": "Chr. Wærums Gade", "husnnr": "21", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:32.293", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:25.507", "mi_style": "Symbol (34, 16720127, 14)", "mi_prinx": 380}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574200.5290566034, 6222565.141509435]},"properties": {"vejnavn": "Stadion Allé", "husnnr": "24", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:32.327", "rettet_af": "spatial_reader", "rettet_dato": "2026-03-24 13:56:15.127", "mi_style": "Symbol (34, 16720127, 14)", "mi_prinx": 381}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574191.027535771, 6222648.197955245]},"properties": {"vejnavn": "Stadion Allé", "husnnr": "14", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:32.36", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:25.58", "mi_style": "Symbol (34, 16720127, 14)", "mi_prinx": 382}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574193.9630563403, 6222718.033740373]},"properties": {"vejnavn": "Stadion Allé", "husnnr": "7", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:32.39", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:25.617", "mi_style": "Symbol (34, 16720127, 14)", "mi_prinx": 383}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575232.5353912722, 6224544.841898856]},"properties": {"vejnavn": "Studsgade", "husnnr": "38", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:32.423", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:25.673", "mi_style": "Symbol (34, 16720127, 14)", "mi_prinx": 384}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574716.4527343153, 6224380.4153674]},"properties": {"vejnavn": "Klostergade", "husnnr": "78", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:32.457", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:25.71", "mi_style": "Symbol (34, 16720127, 14)", "mi_prinx": 385}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574748.306430831, 6224145.5731688505]},"properties": {"vejnavn": "Grønnegade", "husnnr": "4", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:32.497", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:25.747", "mi_style": "Symbol (34, 16720127, 14)", "mi_prinx": 386}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574797.3197293266, 6224474.496217515]},"properties": {"vejnavn": "Gammel Munkegade", "husnnr": "6", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:32.863", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:25.827", "mi_style": "Symbol (34, 16720127, 14)", "mi_prinx": 388}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574841.4597338435, 6224276.456527921]},"properties": {"vejnavn": "Vestergade", "husnnr": "11", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:32.897", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:25.863", "mi_style": "Symbol (34, 16720127, 14)", "mi_prinx": 389}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575014.8203643236, 6224302.431240844]},"properties": {"vejnavn": "Badstuegade", "husnnr": "1", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:32.927", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:25.9", "mi_style": "Symbol (34, 16720127, 14)", "mi_prinx": 390}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574934.1924987969, 6223330.958981213]},"properties": {"vejnavn": "M.P. Bruuns Gade", "husnnr": "25", "invalidepladser": 2, "bemrk": null, "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:32.957", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:25.933", "mi_style": "Symbol (34, 16720127, 14)", "mi_prinx": 391}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574915.3095153589, 6223254.954451715]},"properties": {"vejnavn": "Jægergårdsgade", "husnnr": "124", "invalidepladser": 1, "bemrk": "8-16", "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:32.997", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:25.97", "mi_style": "Symbol (34, 16720127, 14)", "mi_prinx": 392}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574915.6393491307, 6223263.812648655]},"properties": {"vejnavn": "Jægergårdsgade", "husnnr": "97", "invalidepladser": 1, "bemrk": "8-16", "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:33.043", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:26.007", "mi_style": "Symbol (34, 16720127, 14)", "mi_prinx": 393}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574488.7107607027, 6223237.937915382]},"properties": {"vejnavn": "Istedgade", "husnnr": "14", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:33.077", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:26.043", "mi_style": "Symbol (34, 16720127, 14)", "mi_prinx": 394}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574767.2962480201, 6223464.91676953]},"properties": {"vejnavn": "Banegårdspladsen", "husnnr": "1", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:33.19", "rettet_af": "spatial_reader", "rettet_dato": "2025-07-31 09:52:54.773", "mi_style": "Symbol (34, 16720127, 14)", "mi_prinx": 396}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574530.2173944163, 6223395.66940094]},"properties": {"vejnavn": "Kriegersvej", "husnnr": "11", "invalidepladser": 2, "bemrk": null, "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:33.22", "rettet_af": "spatial_reader", "rettet_dato": "2025-07-31 10:04:44.057", "mi_style": "Symbol (34, 16720127, 14)", "mi_prinx": 397}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574906.5854120937, 6223675.0989325205]},"properties": {"vejnavn": "Rosenkrantzgade", "husnnr": "24", "invalidepladser": 2, "bemrk": null, "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:33.257", "rettet_af": "spatial_reader", "rettet_dato": "2025-12-02 14:37:07.49", "mi_style": "Symbol (34, 16720127, 14)", "mi_prinx": 398}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575020.6317082599, 6224083.022794313]},"properties": {"vejnavn": "Fiskergade", "husnnr": "2", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:33.287", "rettet_af": "spatial_reader", "rettet_dato": "2025-07-31 09:55:01.553", "mi_style": "Symbol (34, 16720127, 14)", "mi_prinx": 399}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574872.5218293066, 6223967.619390828]},"properties": {"vejnavn": "Telefonsmøgen", "husnnr": null, "invalidepladser": 3, "bemrk": null, "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:33.327", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:26.6", "mi_style": "Symbol (34, 16720127, 14)", "mi_prinx": 400}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574997.9, 6222462.25]},"properties": {"vejnavn": "Adolph Meyers Vej", "husnnr": null, "invalidepladser": 1, "bemrk": "Ud mod Strandvejen", "ident": "1196", "oprettet_af": "spatial_reader", "oprettet_dato": "2020-03-16 11:55:35.953", "rettet_af": "spatial_reader", "rettet_dato": "2020-03-16 12:00:59.113", "mi_style": null, "mi_prinx": 404}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573880.2000000001, 6222878.7]},"properties": {"vejnavn": "Max Müllers Gade 11", "husnnr": "11", "invalidepladser": 1, "bemrk": null, "ident": "1169", "oprettet_af": "spatial_reader", "oprettet_dato": "2020-03-17 08:08:44.613", "rettet_af": "spatial_reader", "rettet_dato": "2020-03-17 08:08:44.613", "mi_style": null, "mi_prinx": 405}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573875.6000000001, 6222883.899999999]},"properties": {"vejnavn": "Max Müllers Gade", "husnnr": "13", "invalidepladser": 1, "bemrk": null, "ident": "1169", "oprettet_af": "spatial_reader", "oprettet_dato": "2020-03-17 08:11:20.153", "rettet_af": "spatial_reader", "rettet_dato": "2020-03-17 08:11:20.153", "mi_style": null, "mi_prinx": 406}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574233.0, 6226255.500000001]},"properties": {"vejnavn": "Brendstrupvej", "husnnr": "51", "invalidepladser": 1, "bemrk": null, "ident": "1171", "oprettet_af": "spatial_reader", "oprettet_dato": "2020-03-17 08:14:12.3", "rettet_af": "spatial_reader", "rettet_dato": "2020-03-17 08:14:12.3", "mi_style": null, "mi_prinx": 407}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573849.4, 6222996.65]},"properties": {"vejnavn": "Læssøegade", "husnnr": "24", "invalidepladser": 1, "bemrk": null, "ident": "1173", "oprettet_af": "spatial_reader", "oprettet_dato": "2020-03-17 08:18:31.19", "rettet_af": "spatial_reader", "rettet_dato": "2020-03-17 08:18:31.19", "mi_style": null, "mi_prinx": 408}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574396.7, 6224597.35]},"properties": {"vejnavn": "Skt. Marcus Kirkeplads", "husnnr": "6", "invalidepladser": 1, "bemrk": null, "ident": "1173", "oprettet_af": "spatial_reader", "oprettet_dato": "2020-03-17 08:21:54.81", "rettet_af": "spatial_reader", "rettet_dato": "2020-03-17 08:21:54.81", "mi_style": null, "mi_prinx": 409}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574845.2999999999, 6224678.449999999]},"properties": {"vejnavn": "Thunøgade 26B", "husnnr": "26B", "invalidepladser": 1, "bemrk": null, "ident": "1176", "oprettet_af": "spatial_reader", "oprettet_dato": "2020-03-17 08:25:55.553", "rettet_af": "spatial_reader", "rettet_dato": "2020-03-17 08:25:55.553", "mi_style": null, "mi_prinx": 410}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573925.4, 6222166.899999999]},"properties": {"vejnavn": "Ellemarksvej", "husnnr": "31", "invalidepladser": 1, "bemrk": null, "ident": "1181", "oprettet_af": "spatial_reader", "oprettet_dato": "2020-03-17 08:31:40.443", "rettet_af": "spatial_reader", "rettet_dato": "2020-03-17 08:31:40.443", "mi_style": null, "mi_prinx": 412}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [571908.4, 6223314.500000001]},"properties": {"vejnavn": "Henrik Hertz Vej", "husnnr": "54", "invalidepladser": 1, "bemrk": null, "ident": "1182", "oprettet_af": "spatial_reader", "oprettet_dato": "2020-03-17 08:34:51.437", "rettet_af": "spatial_reader", "rettet_dato": "2020-03-17 08:34:51.437", "mi_style": null, "mi_prinx": 413}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574719.1, 6223555.250000001]},"properties": {"vejnavn": "Johannes Bjergs Gade", "husnnr": "", "invalidepladser": 1, "bemrk": "På hjørnet ved Banegårdspladsen 14", "ident": "1185", "oprettet_af": "spatial_reader", "oprettet_dato": "2020-03-17 08:48:20.697", "rettet_af": "spatial_reader", "rettet_dato": "2020-03-17 08:48:20.697", "mi_style": null, "mi_prinx": 416}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575397.9500000001, 6225939.025]},"properties": {"vejnavn": "Ivar Huitfeldts Gade", "husnnr": "64A", "invalidepladser": 1, "bemrk": null, "ident": "1185", "oprettet_af": "spatial_reader", "oprettet_dato": "2020-03-17 08:51:46.78", "rettet_af": "spatial_reader", "rettet_dato": "2020-03-17 08:51:46.78", "mi_style": null, "mi_prinx": 417}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574223.2, 6222506.7]},"properties": {"vejnavn": "Stadion Allé", "husnnr": "29", "invalidepladser": 1, "bemrk": null, "ident": "1186", "oprettet_af": "spatial_reader", "oprettet_dato": "2020-03-17 08:54:59.317", "rettet_af": "spatial_reader", "rettet_dato": "2020-03-17 08:54:59.317", "mi_style": null, "mi_prinx": 418}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [576141.0, 6225269.5]},"properties": {"vejnavn": "Esther Aggebos Gade", "husnnr": "7", "invalidepladser": 1, "bemrk": null, "ident": "1186", "oprettet_af": "spatial_reader", "oprettet_dato": "2020-03-17 08:59:53.823", "rettet_af": "spatial_reader", "rettet_dato": "2020-03-17 08:59:53.823", "mi_style": null, "mi_prinx": 419}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [576136.6, 6225275.9]},"properties": {"vejnavn": "Esther Aggebos Gade", "husnnr": "7", "invalidepladser": 1, "bemrk": null, "ident": "1186", "oprettet_af": "spatial_reader", "oprettet_dato": "2020-03-17 09:00:00.397", "rettet_af": "spatial_reader", "rettet_dato": "2020-03-17 09:00:00.397", "mi_style": null, "mi_prinx": 420}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [576132.525, 6225282.1125]},"properties": {"vejnavn": "Esther Aggebos Gade", "husnnr": "7", "invalidepladser": 1, "bemrk": null, "ident": "1186", "oprettet_af": "spatial_reader", "oprettet_dato": "2020-03-17 09:00:19.683", "rettet_af": "spatial_reader", "rettet_dato": "2020-03-17 09:01:17.037", "mi_style": null, "mi_prinx": 421}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574134.4, 6222663.3500000015]},"properties": {"vejnavn": "Ålborggade", "husnnr": "16", "invalidepladser": 1, "bemrk": "på NV hjørnet ved Chr. Wærums Gade", "ident": "1187", "oprettet_af": "spatial_reader", "oprettet_dato": "2020-03-17 09:08:44.067", "rettet_af": "spatial_reader", "rettet_dato": "2020-03-17 09:08:44.067", "mi_style": null, "mi_prinx": 422}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573822.0, 6222563.450000001]},"properties": {"vejnavn": "P. P. Ørums Gade", "husnnr": "40", "invalidepladser": 1, "bemrk": null, "ident": "1187", "oprettet_af": "spatial_reader", "oprettet_dato": "2020-03-17 09:12:21.367", "rettet_af": "spatial_reader", "rettet_dato": "2020-03-17 09:12:21.367", "mi_style": null, "mi_prinx": 423}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [570801.2, 6216735.900000001]},"properties": {"vejnavn": "Kirketorvet", "husnnr": "14", "invalidepladser": 1, "bemrk": null, "ident": "1190", "oprettet_af": "spatial_reader", "oprettet_dato": "2020-03-17 09:14:51.303", "rettet_af": "spatial_reader", "rettet_dato": "2020-03-17 09:14:51.303", "mi_style": null, "mi_prinx": 424}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [570806.0, 6216734.500000001]},"properties": {"vejnavn": "Kirketorvet", "husnnr": "14", "invalidepladser": 1, "bemrk": null, "ident": "1190", "oprettet_af": "spatial_reader", "oprettet_dato": "2020-03-17 09:15:00.997", "rettet_af": "spatial_reader", "rettet_dato": "2020-03-17 09:15:00.997", "mi_style": null, "mi_prinx": 425}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574101.2, 6223033.899999999]},"properties": {"vejnavn": "Schleppegrellsgade", "husnnr": "2", "invalidepladser": 1, "bemrk": null, "ident": "1191", "oprettet_af": "spatial_reader", "oprettet_dato": "2020-03-17 09:19:45.767", "rettet_af": "spatial_reader", "rettet_dato": "2020-03-17 09:19:45.767", "mi_style": null, "mi_prinx": 426}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574902.6, 6222755.500000001]},"properties": {"vejnavn": "Hendrik Pontoppidans Gade", "husnnr": "18", "invalidepladser": 1, "bemrk": null, "ident": "1191", "oprettet_af": "spatial_reader", "oprettet_dato": "2020-03-17 09:22:33.383", "rettet_af": "spatial_reader", "rettet_dato": "2020-03-17 09:22:33.383", "mi_style": null, "mi_prinx": 427}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573502.0, 6224196.900000001]},"properties": {"vejnavn": "Regensburgsgade", "husnnr": "12", "invalidepladser": 1, "bemrk": null, "ident": "1191", "oprettet_af": "spatial_reader", "oprettet_dato": "2020-03-17 09:24:22.523", "rettet_af": "spatial_reader", "rettet_dato": "2020-03-17 09:25:10.057", "mi_style": null, "mi_prinx": 428}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574308.35, 6223515.425000001]},"properties": {"vejnavn": "Christen Købkes Gade", "husnnr": "6", "invalidepladser": 1, "bemrk": null, "ident": "1193", "oprettet_af": "spatial_reader", "oprettet_dato": "2020-03-17 09:27:59.887", "rettet_af": "spatial_reader", "rettet_dato": "2020-03-17 09:27:59.887", "mi_style": null, "mi_prinx": 430}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575200.2, 6224522.150000001]},"properties": {"vejnavn": "Studsgade", "husnnr": "22", "invalidepladser": 1, "bemrk": null, "ident": "1193", "oprettet_af": "spatial_reader", "oprettet_dato": "2020-03-17 09:29:06.1", "rettet_af": "spatial_reader", "rettet_dato": "2020-03-17 09:29:06.1", "mi_style": null, "mi_prinx": 431}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574790.4, 6222623.850000001]},"properties": {"vejnavn": "Assensgade", "husnnr": "13", "invalidepladser": 1, "bemrk": null, "ident": "1193", "oprettet_af": "spatial_reader", "oprettet_dato": "2020-03-17 09:31:34.91", "rettet_af": "spatial_reader", "rettet_dato": "2020-03-17 09:31:34.91", "mi_style": null, "mi_prinx": 432}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575263.2000000001, 6228819.3]},"properties": {"vejnavn": "Tværmarksvej", "husnnr": "91", "invalidepladser": 1, "bemrk": null, "ident": "1200", "oprettet_af": "spatial_reader", "oprettet_dato": "2020-03-17 09:36:06.61", "rettet_af": "spatial_reader", "rettet_dato": "2020-03-17 09:36:06.61", "mi_style": null, "mi_prinx": 433}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574008.1, 6225215.550000001]},"properties": {"vejnavn": "Chr. Molbechs Vej", "husnnr": "7", "invalidepladser": 1, "bemrk": null, "ident": "1202", "oprettet_af": "spatial_reader", "oprettet_dato": "2020-03-17 09:42:59.763", "rettet_af": "spatial_reader", "rettet_dato": "2020-03-17 09:42:59.763", "mi_style": null, "mi_prinx": 434}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575616.4500000001, 6226158.575000001]},"properties": {"vejnavn": "Skovvangsvej", "husnnr": "218", "invalidepladser": 1, "bemrk": "", "ident": "1203", "oprettet_af": "spatial_reader", "oprettet_dato": "2020-03-17 10:22:30.467", "rettet_af": "spatial_reader", "rettet_dato": "2020-03-17 10:22:30.467", "mi_style": null, "mi_prinx": 435}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574331.2000000001, 6227559.55]},"properties": {"vejnavn": "Vorregårds Allé", "husnnr": "125", "invalidepladser": 1, "bemrk": null, "ident": "1205", "oprettet_af": "spatial_reader", "oprettet_dato": "2020-03-17 10:27:08.61", "rettet_af": "spatial_reader", "rettet_dato": "2020-03-17 10:27:08.61", "mi_style": null, "mi_prinx": 436}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574076.6, 6222877.450000001]},"properties": {"vejnavn": "Vejlegade", "husnnr": "4", "invalidepladser": 1, "bemrk": null, "ident": "1207", "oprettet_af": "spatial_reader", "oprettet_dato": "2020-03-17 10:35:54.443", "rettet_af": "spatial_reader", "rettet_dato": "2020-03-17 10:35:54.443", "mi_style": null, "mi_prinx": 437}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574813.4, 6227367.300000002]},"properties": {"vejnavn": "Solhvervsvej", "husnnr": "16", "invalidepladser": 1, "bemrk": null, "ident": "1208", "oprettet_af": "spatial_reader", "oprettet_dato": "2020-03-17 10:36:25.903", "rettet_af": "spatial_reader", "rettet_dato": "2020-03-23 06:58:57.687", "mi_style": null, "mi_prinx": 438}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573701.05, 6225537.125000001]},"properties": {"vejnavn": "Vilhelm Bergsøes Vej", "husnnr": "37", "invalidepladser": 1, "bemrk": null, "ident": "1208", "oprettet_af": "spatial_reader", "oprettet_dato": "2020-03-17 10:39:11.127", "rettet_af": "spatial_reader", "rettet_dato": "2020-03-17 10:39:11.127", "mi_style": null, "mi_prinx": 439}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [570415.7999999999, 6224631.05]},"properties": {"vejnavn": "Karen Blixens Boulevard", "husnnr": "7", "invalidepladser": 1, "bemrk": null, "ident": "1208", "oprettet_af": "spatial_reader", "oprettet_dato": "2020-03-17 10:42:06.563", "rettet_af": "spatial_reader", "rettet_dato": "2020-03-17 10:42:06.563", "mi_style": null, "mi_prinx": 440}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573264.6000000001, 6225891.1000000015]},"properties": {"vejnavn": "Majdalen", "husnnr": "9", "invalidepladser": 1, "bemrk": null, "ident": "1209", "oprettet_af": "spatial_reader", "oprettet_dato": "2020-03-17 10:46:08.143", "rettet_af": "spatial_reader", "rettet_dato": "2020-03-23 07:00:59.987", "mi_style": null, "mi_prinx": 441}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575311.4, 6225676.650000001]},"properties": {"vejnavn": "Willemoesgade", "husnnr": "5", "invalidepladser": 1, "bemrk": null, "ident": "1213", "oprettet_af": "spatial_reader", "oprettet_dato": "2020-03-17 10:52:54.42", "rettet_af": "spatial_reader", "rettet_dato": "2020-03-17 10:52:54.42", "mi_style": null, "mi_prinx": 442}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575013.2, 6224297.75]},"properties": {"vejnavn": "Badstuegade", "husnnr": "1B", "invalidepladser": 1, "bemrk": null, "ident": "1213", "oprettet_af": "spatial_reader", "oprettet_dato": "2020-03-17 11:06:29.84", "rettet_af": "spatial_reader", "rettet_dato": "2020-03-17 11:06:29.84", "mi_style": null, "mi_prinx": 443}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574438.2, 6224426.775000001]},"properties": {"vejnavn": "Langelandsgade", "husnnr": "8", "invalidepladser": 1, "bemrk": null, "ident": "1216", "oprettet_af": "spatial_reader", "oprettet_dato": "2020-03-17 11:12:55.713", "rettet_af": "spatial_reader", "rettet_dato": "2020-03-17 11:12:55.713", "mi_style": null, "mi_prinx": 444}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574116.1, 6222681.774999999]},"properties": {"vejnavn": "Chr. Wærums Gade", "husnnr": "11A", "invalidepladser": 1, "bemrk": null, "ident": "1217", "oprettet_af": "spatial_reader", "oprettet_dato": "2020-03-17 11:15:24.13", "rettet_af": "spatial_reader", "rettet_dato": "2020-03-17 11:15:24.13", "mi_style": null, "mi_prinx": 445}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575674.7999999999, 6225450.7]},"properties": {"vejnavn": "Skovvejen", "husnnr": "44B", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2020-03-17 11:25:59.593", "rettet_af": "spatial_reader", "rettet_dato": "2020-03-17 11:26:38.423", "mi_style": "Symbol (34, 16720127, 14)", "mi_prinx": 446}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575677.0, 6225459.9]},"properties": {"vejnavn": "Skovvejen", "husnnr": "44A", "invalidepladser": 1, "bemrk": null, "ident": "1217", "oprettet_af": "spatial_reader", "oprettet_dato": "2020-03-17 11:27:24.777", "rettet_af": "spatial_reader", "rettet_dato": "2020-03-17 11:27:24.777", "mi_style": "Symbol (34, 16720127, 14)", "mi_prinx": 447}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575345.5377970586, 6224349.986968176]},"properties": {"vejnavn": "Skt. Olufs Gade", "husnnr": "1", "invalidepladser": 1, "bemrk": null, "ident": "1217", "oprettet_af": "spatial_reader", "oprettet_dato": "2020-03-17 11:32:05.217", "rettet_af": "spatial_reader", "rettet_dato": "2025-07-31 09:59:53.663", "mi_style": null, "mi_prinx": 448}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575681.3, 6226046.85]},"properties": {"vejnavn": "Peder Skrams Gade", "husnnr": "15", "invalidepladser": 1, "bemrk": null, "ident": "1195+1203", "oprettet_af": "spatial_reader", "oprettet_dato": "2020-03-17 11:44:10.597", "rettet_af": "spatial_reader", "rettet_dato": "2020-03-17 11:44:10.597", "mi_style": null, "mi_prinx": 449}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575668.2000000001, 6226049.55]},"properties": {"vejnavn": "Peder Skrams Gade", "husnnr": "17", "invalidepladser": 1, "bemrk": null, "ident": "1195+1203", "oprettet_af": "spatial_reader", "oprettet_dato": "2020-03-17 11:44:22.327", "rettet_af": "spatial_reader", "rettet_dato": "2020-03-17 11:44:22.327", "mi_style": null, "mi_prinx": 450}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573564.4, 6224469.1]},"properties": {"vejnavn": "Tage-Hansens Gade", "husnnr": "29", "invalidepladser": null, "bemrk": null, "ident": "1196+1212", "oprettet_af": "spatial_reader", "oprettet_dato": "2020-03-17 11:47:52.29", "rettet_af": "spatial_reader", "rettet_dato": "2020-03-17 11:49:58.087", "mi_style": null, "mi_prinx": 451}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573564.6000000001, 6224461.9]},"properties": {"vejnavn": "Tage-Hansens Gade", "husnnr": "29", "invalidepladser": 1, "bemrk": null, "ident": "1196+1212", "oprettet_af": "spatial_reader", "oprettet_dato": "2020-03-17 11:48:07.09", "rettet_af": "spatial_reader", "rettet_dato": "2020-03-17 11:49:44.383", "mi_style": null, "mi_prinx": 452}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573564.4, 6224492.5]},"properties": {"vejnavn": "Tage-Hansens Gade", "husnnr": "31B", "invalidepladser": 1, "bemrk": null, "ident": "1196+1212", "oprettet_af": "spatial_reader", "oprettet_dato": "2020-03-17 11:48:39.0", "rettet_af": "spatial_reader", "rettet_dato": "2020-03-17 11:48:39.0", "mi_style": null, "mi_prinx": 453}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574462.6000000001, 6222419.500000001]},"properties": {"vejnavn": "Marselis Boulevard", "husnnr": "34", "invalidepladser": 1, "bemrk": null, "ident": "1218", "oprettet_af": "spatial_reader", "oprettet_dato": "2020-03-17 11:52:06.373", "rettet_af": "spatial_reader", "rettet_dato": "2020-03-17 11:52:06.373", "mi_style": null, "mi_prinx": 454}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574468.6000000001, 6222420.700000001]},"properties": {"vejnavn": "Marselis Boulevard", "husnnr": "34", "invalidepladser": 1, "bemrk": null, "ident": "1218", "oprettet_af": "spatial_reader", "oprettet_dato": "2020-03-17 11:52:12.95", "rettet_af": "spatial_reader", "rettet_dato": "2020-03-17 11:52:12.95", "mi_style": null, "mi_prinx": 455}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574475.0000000001, 6222421.900000001]},"properties": {"vejnavn": "Marselis Boulevard", "husnnr": "34", "invalidepladser": 1, "bemrk": null, "ident": "1218", "oprettet_af": "spatial_reader", "oprettet_dato": "2020-03-17 11:52:20.613", "rettet_af": "spatial_reader", "rettet_dato": "2020-03-17 11:52:20.613", "mi_style": null, "mi_prinx": 456}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574481.8, 6222423.1000000015]},"properties": {"vejnavn": "Marselis Boulevard", "husnnr": "34", "invalidepladser": 1, "bemrk": null, "ident": "1218", "oprettet_af": "spatial_reader", "oprettet_dato": "2020-03-17 11:52:32.217", "rettet_af": "spatial_reader", "rettet_dato": "2020-03-17 11:52:32.217", "mi_style": null, "mi_prinx": 457}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [576152.8, 6225252.3]},"properties": {"vejnavn": "Esther Aggebos Gade", "husnnr": "3", "invalidepladser": 1, "bemrk": null, "ident": "1186+1172", "oprettet_af": "spatial_reader", "oprettet_dato": "2020-03-23 06:51:19.7", "rettet_af": "spatial_reader", "rettet_dato": "2020-03-23 06:51:19.7", "mi_style": null, "mi_prinx": 458}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [576138.6000000001, 6225293.1]},"properties": {"vejnavn": "Esther Aggebos Gade", "husnnr": "12", "invalidepladser": 1, "bemrk": null, "ident": "1186+1172", "oprettet_af": "spatial_reader", "oprettet_dato": "2020-03-23 06:51:52.03", "rettet_af": "spatial_reader", "rettet_dato": "2020-03-23 06:51:52.03", "mi_style": null, "mi_prinx": 459}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [576141.8, 6225288.5]},"properties": {"vejnavn": "Esther Aggebos Gade", "husnnr": "10", "invalidepladser": 1, "bemrk": null, "ident": "1186+1172", "oprettet_af": "spatial_reader", "oprettet_dato": "2020-03-23 06:52:02.153", "rettet_af": "spatial_reader", "rettet_dato": "2020-03-23 06:52:02.153", "mi_style": null, "mi_prinx": 460}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [576156.4, 6225267.7]},"properties": {"vejnavn": "Esther Aggebos Gade", "husnnr": "6", "invalidepladser": 1, "bemrk": null, "ident": "1186+1172", "oprettet_af": "spatial_reader", "oprettet_dato": "2020-03-23 06:52:20.473", "rettet_af": "spatial_reader", "rettet_dato": "2020-03-23 06:52:20.473", "mi_style": null, "mi_prinx": 461}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574173.0585387659, 6222819.027722998]},"properties": {"vejnavn": "Ingerslev Boulevard", "husnnr": null, "invalidepladser": 1, "bemrk": "1200", "ident": "1", "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-10 13:11:36.553", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-10 13:11:36.553", "mi_style": null, "mi_prinx": 464}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574717.2467898262, 6222608.072481987]},"properties": {"vejnavn": "Assensgade", "husnnr": "21", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-10 14:16:10.33", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-10 14:16:10.33", "mi_style": null, "mi_prinx": 466}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574756.4414590374, 6222616.351223999]},"properties": {"vejnavn": "Assensgade", "husnnr": "17", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-10 14:17:39.227", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-10 14:17:39.227", "mi_style": null, "mi_prinx": 467}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575071.0398722045, 6223736.640195375]},"properties": {"vejnavn": "Fredensgade", "husnnr": "36", "invalidepladser": 2, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-10 14:23:36.633", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-10 14:23:36.633", "mi_style": null, "mi_prinx": 468}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575071.6634185021, 6223738.822607417]},"properties": {"vejnavn": "Fredensgade ", "husnnr": "36", "invalidepladser": 2, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-10 14:24:07.44", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-10 14:24:07.44", "mi_style": null, "mi_prinx": 469}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574458.5545235131, 6224405.154470327]},"properties": {"vejnavn": "Langelandsgade", "husnnr": "4", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-10 15:01:44.29", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-10 15:01:44.29", "mi_style": null, "mi_prinx": 470}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574456.8303596153, 6224406.480750249]},"properties": {"vejnavn": "Langelandsgade", "husnnr": "4", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-10 15:02:10.15", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-10 15:02:10.15", "mi_style": null, "mi_prinx": 471}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574439.588720638, 6224425.8444371]},"properties": {"vejnavn": "Langelandsgade", "husnnr": "6", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-10 15:02:36.877", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-10 15:02:36.877", "mi_style": null, "mi_prinx": 472}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574213.7462111231, 6224317.430271916]},"properties": {"vejnavn": "Mønsgade", "husnnr": "8a", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-10 15:06:38.743", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-10 15:06:38.743", "mi_style": null, "mi_prinx": 473}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574364.2445136809, 6225576.13351622]},"properties": {"vejnavn": "Gustav Wieds Vej", "husnnr": "31", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-10 15:14:03.827", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-10 15:14:03.827", "mi_style": null, "mi_prinx": 474}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574271.226033188, 6225520.486698972]},"properties": {"vejnavn": "Gustav Wieds Vej", "husnnr": "25", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-10 15:14:25.237", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-10 15:14:54.583", "mi_style": null, "mi_prinx": 475}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573648.4455852153, 6222703.284394252]},"properties": {"vejnavn": "Åbenrågade", "husnnr": "9", "invalidepladser": 2, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-10 15:18:50.257", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 11:30:10.813", "mi_style": null, "mi_prinx": 476}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573645.981519507, 6222704.927104725]},"properties": {"vejnavn": "Åbenrågade", "husnnr": "9", "invalidepladser": 2, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-10 15:19:02.07", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 11:30:24.89", "mi_style": null, "mi_prinx": 477}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574615.0200821363, 6226143.664271046]},"properties": {"vejnavn": "Brendstrupvej", "husnnr": "5", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-10 15:24:58.847", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-10 15:25:25.463", "mi_style": null, "mi_prinx": 478}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573440.6894959002, 6225916.164055831]},"properties": {"vejnavn": "Fuglesangs Allé ", "husnnr": "115", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-10 15:30:49.483", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-10 15:31:19.2", "mi_style": null, "mi_prinx": 479}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573441.7161899453, 6225914.829353572]},"properties": {"vejnavn": "Fuglesangs Allé", "husnnr": "115", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-10 15:31:13.193", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-10 15:31:13.193", "mi_style": null, "mi_prinx": 480}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [572528.9192842386, 6223635.9144780645]},"properties": {"vejnavn": "Åbyvej ", "husnnr": "56", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-10 15:33:23.21", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-10 15:33:23.21", "mi_style": null, "mi_prinx": 481}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [577384.3500328106, 6228392.545887083]},"properties": {"vejnavn": "Vestre Strandallé", "husnnr": "170", "invalidepladser": 2, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-10 15:35:52.45", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-10 15:35:52.45", "mi_style": null, "mi_prinx": 482}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [577384.3500328106, 6228395.831308028]},"properties": {"vejnavn": "Vestre Strandallé", "husnnr": "170", "invalidepladser": 2, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-10 15:36:07.74", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-10 15:36:07.74", "mi_style": null, "mi_prinx": 483}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574290.6883509178, 6223440.857930892]},"properties": {"vejnavn": "Christen Købkes Gade", "husnnr": "25", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 08:04:38.56", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 08:04:38.56", "mi_style": null, "mi_prinx": 485}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574292.8885474477, 6223450.555093376]},"properties": {"vejnavn": "Christen Købkes gade", "husnnr": "25", "invalidepladser": 1, "bemrk": "tidsbegrænset", "ident": "", "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 08:05:17.92", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 08:05:17.92", "mi_style": null, "mi_prinx": 486}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574188.2994045179, 6222220.596509239]},"properties": {"vejnavn": "Ellemarksvej", "husnnr": "25", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 08:09:47.597", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 08:09:47.597", "mi_style": null, "mi_prinx": 487}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574594.8774293908, 6224862.872887781]},"properties": {"vejnavn": "Falstergade ", "husnnr": "9", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 08:11:45.25", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 08:11:45.25", "mi_style": null, "mi_prinx": 488}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575645.3796509246, 6225033.394188903]},"properties": {"vejnavn": "Fiskerivej", "husnnr": "2", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 08:13:23.887", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 08:13:23.887", "mi_style": null, "mi_prinx": 489}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575687.3336841018, 6225135.283751449]},"properties": {"vejnavn": "Fiskerivej", "husnnr": "6", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 08:21:28.367", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 08:21:28.367", "mi_style": null, "mi_prinx": 490}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573765.5234907598, 6222669.554414783]},"properties": {"vejnavn": "Gråstengade", "husnnr": "4", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 08:23:07.33", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 08:23:07.33", "mi_style": null, "mi_prinx": 491}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574263.9406273357, 6223167.701885861]},"properties": {"vejnavn": "Holbergsgade", "husnnr": "4", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 08:37:05.283", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 08:37:05.283", "mi_style": null, "mi_prinx": 492}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573818.8194244037, 6222564.275600996]},"properties": {"vejnavn": "P.P. Ørums Gade ", "husnnr": "40", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 08:54:37.353", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 08:54:37.353", "mi_style": null, "mi_prinx": 494}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575020.143846024, 6224751.283552042]},"properties": {"vejnavn": "Sjællandsgade ", "husnnr": "44", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 08:55:58.737", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 08:55:58.737", "mi_style": null, "mi_prinx": 495}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575126.0758521565, 6225602.137577002]},"properties": {"vejnavn": "Skt. Johannes Allé", "husnnr": "4", "invalidepladser": 1, "bemrk": "tidsbegrænset", "ident": "", "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 08:58:18.097", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 08:58:18.097", "mi_style": null, "mi_prinx": 497}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575127.7185626287, 6225602.958932239]},"properties": {"vejnavn": "Skt. Johannes Allé ", "husnnr": "4", "invalidepladser": 1, "bemrk": "Tidsbegrænset", "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 08:58:54.79", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 08:58:54.79", "mi_style": null, "mi_prinx": 498}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574192.3717864477, 6222728.518480494]},"properties": {"vejnavn": "Stadion Allé ", "husnnr": "5", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 09:01:35.56", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 09:01:35.56", "mi_style": null, "mi_prinx": 499}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574516.2188090354, 6224495.0]},"properties": {"vejnavn": "Teglværksgade", "husnnr": "5", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 09:04:13.31", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 09:04:13.31", "mi_style": null, "mi_prinx": 500}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573382.1503490765, 6222436.561601641]},"properties": {"vejnavn": "Langenæs Allé", "husnnr": "45", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 09:05:22.27", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 09:05:22.27", "mi_style": null, "mi_prinx": 501}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574586.7241332495, 6222319.2006106265]},"properties": {"vejnavn": "Marselis tværvej", "husnnr": "3", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 09:10:21.543", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 09:10:21.543", "mi_style": null, "mi_prinx": 502}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575512.1720674813, 6225984.295569786]},"properties": {"vejnavn": "Herluf Trolles Gade", "husnnr": "43", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 09:11:37.07", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 09:11:37.07", "mi_style": null, "mi_prinx": 503}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [570549.4435318275, 6223329.651950718]},"properties": {"vejnavn": "Louisevej", "husnnr": "60", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 09:12:39.197", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 09:12:39.197", "mi_style": null, "mi_prinx": 504}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575432.3019691993, 6213534.279897331]},"properties": {"vejnavn": "Skoleparken", "husnnr": "3", "invalidepladser": 2, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 09:15:20.913", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 09:15:20.913", "mi_style": null, "mi_prinx": 505}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575435.1767125258, 6213534.895913758]},"properties": {"vejnavn": "Skoleparken ", "husnnr": "3", "invalidepladser": 2, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 09:15:35.137", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 09:15:35.137", "mi_style": null, "mi_prinx": 506}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574686.8167566396, 6224112.425570103]},"properties": {"vejnavn": "Blegdammen", "husnnr": "3", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 09:46:05.277", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 09:46:05.277", "mi_style": null, "mi_prinx": 507}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574737.8197535932, 6222559.590349074]},"properties": {"vejnavn": "Dalgas Avenue", "husnnr": "33", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 09:48:59.607", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 09:48:59.607", "mi_style": null, "mi_prinx": 508}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574724.2673921969, 6222578.276180697]},"properties": {"vejnavn": "Dalgas Avenue", "husnnr": "31", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 09:49:32.92", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 09:49:32.92", "mi_style": null, "mi_prinx": 509}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574662.6690560804, 6222698.830589775]},"properties": {"vejnavn": "Fåborggade", "husnnr": "19", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 09:52:16.67", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 09:52:16.67", "mi_style": null, "mi_prinx": 510}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573723.7641226394, 6222883.87392884]},"properties": {"vejnavn": "Haderslevgade", "husnnr": "23", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 09:56:02.037", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 09:56:02.037", "mi_style": null, "mi_prinx": 511}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574950.1948158465, 6222518.823101973]},"properties": {"vejnavn": "Kildegården ", "husnnr": "14", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 10:02:38.327", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 10:02:38.327", "mi_style": null, "mi_prinx": 512}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573174.3326094088, 6222324.340775997]},"properties": {"vejnavn": "Kirkedammen", "husnnr": "31", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 10:03:44.91", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 10:03:44.91", "mi_style": null, "mi_prinx": 513}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574764.3736858368, 6224401.6597698275]},"properties": {"vejnavn": "Klostergade", "husnnr": "68", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 10:04:40.63", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 10:04:40.63", "mi_style": null, "mi_prinx": 514}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575484.2643121149, 6224755.312114988]},"properties": {"vejnavn": "Kystvejen", "husnnr": "63", "invalidepladser": null, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 10:05:45.95", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 10:05:45.95", "mi_style": null, "mi_prinx": 516}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575260.0545790552, 6225740.691868583]},"properties": {"vejnavn": "Niels Juels Gade", "husnnr": "64", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 10:06:42.113", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 10:06:42.113", "mi_style": null, "mi_prinx": 517}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574122.1695396319, 6222253.575999677]},"properties": {"vejnavn": "Ordrupvej", "husnnr": "7", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 10:07:29.987", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 10:07:29.987", "mi_style": null, "mi_prinx": 518}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573820.2902647848, 6222564.066232556]},"properties": {"vejnavn": "P.P. Ørums Gade", "husnnr": "40", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 10:08:36.257", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 10:08:36.257", "mi_style": null, "mi_prinx": 519}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573513.2284804934, 6224421.503059546]},"properties": {"vejnavn": "Thomas Nielsens Gade ", "husnnr": "4b", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 10:35:15.567", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 10:35:15.567", "mi_style": null, "mi_prinx": 521}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574869.9698357292, 6224686.401437372]},"properties": {"vejnavn": "Thunøgade", "husnnr": "17", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 10:36:20.32", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 10:36:20.32", "mi_style": null, "mi_prinx": 522}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574842.0437577005, 6224677.982546201]},"properties": {"vejnavn": "Thunøgade", "husnnr": "21", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 10:36:47.17", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 10:36:47.17", "mi_style": null, "mi_prinx": 523}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573819.4550102665, 6222787.195071867]},"properties": {"vejnavn": "Langenæs Allé", "husnnr": "1", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 10:38:32.23", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 10:38:32.23", "mi_style": null, "mi_prinx": 524}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573819.8656878845, 6222774.258726898]},"properties": {"vejnavn": "Langenæs Allé", "husnnr": "3", "invalidepladser": null, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 10:38:44.137", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 10:38:44.137", "mi_style": null, "mi_prinx": 525}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573809.5987474328, 6222763.17043121]},"properties": {"vejnavn": "Langenæs Allé", "husnnr": "5", "invalidepladser": null, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 10:39:04.733", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 10:39:04.733", "mi_style": null, "mi_prinx": 526}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574862.9051540041, 6226224.204312115]},"properties": {"vejnavn": "Finsensgade", "husnnr": "61", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 10:40:40.31", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 10:40:40.31", "mi_style": null, "mi_prinx": 527}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575609.3253388093, 6225642.107802872]},"properties": {"vejnavn": "Niels Juels Gade", "husnnr": "14", "invalidepladser": null, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 10:41:40.133", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 10:41:40.133", "mi_style": null, "mi_prinx": 528}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575621.7098357282, 6226157.82032854]},"properties": {"vejnavn": "Skovvangsvej", "husnnr": "220", "invalidepladser": null, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 10:42:29.26", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 10:42:29.26", "mi_style": null, "mi_prinx": 529}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574273.5949691997, 6226579.6673511285]},"properties": {"vejnavn": "Frederikshaldsgade ", "husnnr": "15", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 10:46:09.1", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 10:46:09.1", "mi_style": null, "mi_prinx": 530}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574272.9789527727, 6226577.408624229]},"properties": {"vejnavn": "Frederikshaldsgade", "husnnr": "15", "invalidepladser": null, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 10:46:27.437", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 10:46:27.437", "mi_style": null, "mi_prinx": 531}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574550.2745468095, 6226415.597575942]},"properties": {"vejnavn": "Norges Allé", "husnnr": "1", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 10:48:32.27", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 10:48:32.27", "mi_style": null, "mi_prinx": 532}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573464.9690871622, 6225551.886526177]},"properties": {"vejnavn": "Fuglesangs Allé", "husnnr": "114", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 10:49:51.593", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 10:49:51.593", "mi_style": null, "mi_prinx": 533}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573284.2962628339, 6226064.2587268995]},"properties": {"vejnavn": "Hammershusvej ", "husnnr": "51", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 10:50:32.377", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 10:50:32.377", "mi_style": null, "mi_prinx": 534}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574168.5019342923, 6225689.519246406]},"properties": {"vejnavn": "Jens Baggesens Vej", "husnnr": "92d", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 10:52:34.45", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 10:52:34.45", "mi_style": null, "mi_prinx": 536}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573183.6454293831, 6219583.845422071]},"properties": {"vejnavn": "M.P. Hansens Vej", "husnnr": "18", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 10:54:27.033", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 10:54:27.033", "mi_style": null, "mi_prinx": 537}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573194.0588431241, 6219583.965116482]},"properties": {"vejnavn": "M.P. Hansens Gade", "husnnr": "18", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 10:54:45.367", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 10:54:45.367", "mi_style": null, "mi_prinx": 538}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574293.6617659132, 6222509.108829569]},"properties": {"vejnavn": "F. Vestergaards Gade", "husnnr": "32", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 10:56:36.283", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 10:56:36.283", "mi_style": null, "mi_prinx": 539}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574290.7870225868, 6222525.535934292]},"properties": {"vejnavn": "F. Vestergaards Gade ", "husnnr": "32", "invalidepladser": null, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 10:56:51.647", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 10:56:51.647", "mi_style": null, "mi_prinx": 540}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575014.7018685832, 6224472.544147842]},"properties": {"vejnavn": "Guldsmedegade", "husnnr": "26", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 10:58:17.377", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 10:58:17.377", "mi_style": null, "mi_prinx": 541}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574853.3419507187, 6224400.072895276]},"properties": {"vejnavn": "Klostergade ", "husnnr": "56", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 11:01:19.687", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 11:01:46.85", "mi_style": null, "mi_prinx": 542}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574850.2618685832, 6224400.278234085]},"properties": {"vejnavn": "Klostergade", "husnnr": "56", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 11:01:29.593", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 11:01:29.593", "mi_style": null, "mi_prinx": 543}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573800.5521852324, 6222947.219776177]},"properties": {"vejnavn": "Læssøesgade", "husnnr": "83", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 11:15:14.473", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 11:15:14.473", "mi_style": null, "mi_prinx": 544}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575433.1519507194, 6224837.509240246]},"properties": {"vejnavn": "Molsgade", "husnnr": "4", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 11:27:04.7", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 11:27:04.7", "mi_style": null, "mi_prinx": 545}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574117.4563655023, 6222280.277207391]},"properties": {"vejnavn": "Ordrupvej", "husnnr": "1", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 11:27:44.68", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 11:27:44.68", "mi_style": null, "mi_prinx": 547}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573592.798767967, 6222723.202258727]},"properties": {"vejnavn": "Åbenrågade", "husnnr": "17", "invalidepladser": null, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 11:30:01.607", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 11:30:01.607", "mi_style": null, "mi_prinx": 548}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573852.0671252563, 6224259.847022587]},"properties": {"vejnavn": "Ringkøbingvej ", "husnnr": "16", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 11:31:29.06", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 11:31:29.06", "mi_style": null, "mi_prinx": 549}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573851.8617864472, 6224258.409650924]},"properties": {"vejnavn": "Ringkøbingvej", "husnnr": "16", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 11:31:45.1", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 11:31:45.1", "mi_style": null, "mi_prinx": 550}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574375.1585652019, 6222033.415963625]},"properties": {"vejnavn": "Skovbrynet", "husnnr": null, "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 11:33:45.17", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 11:33:45.17", "mi_style": null, "mi_prinx": 551}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574606.2883778228, 6227299.677618067]},"properties": {"vejnavn": "Vorregårds Allé ", "husnnr": "103", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 11:34:59.943", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 11:34:59.943", "mi_style": null, "mi_prinx": 552}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575306.5234312108, 6225834.736901434]},"properties": {"vejnavn": "Willemoesgade", "husnnr": "13", "invalidepladser": 1, "bemrk": "Tidsbegrænset", "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 11:36:31.937", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 11:36:31.937", "mi_style": null, "mi_prinx": 553}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575306.9341088288, 6225832.478174535]},"properties": {"vejnavn": "Willemoesgade", "husnnr": "13", "invalidepladser": 1, "bemrk": "tidsbegrænset", "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 11:36:49.883", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 11:36:49.883", "mi_style": null, "mi_prinx": 554}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573236.9384143031, 6220161.223442913]},"properties": {"vejnavn": "Rundhøj Allé", "husnnr": "54", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 11:38:24.073", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 11:38:24.073", "mi_style": null, "mi_prinx": 555}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [570728.6893018486, 6216766.413757699]},"properties": {"vejnavn": "Kirketorvet", "husnnr": null, "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 11:42:34.943", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 11:42:34.943", "mi_style": null, "mi_prinx": 556}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [570725.4038809041, 6216767.645790554]},"properties": {"vejnavn": "Kirketorvet", "husnnr": null, "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 11:42:46.957", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 11:42:46.957", "mi_style": null, "mi_prinx": 557}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [570683.72010267, 6216786.947638603]},"properties": {"vejnavn": "Kirketorvet", "husnnr": null, "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 11:43:20.413", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 11:43:20.413", "mi_style": null, "mi_prinx": 558}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [570684.5414579061, 6216790.438398357]},"properties": {"vejnavn": "Kirketorvet", "husnnr": null, "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 11:43:30.79", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 11:43:30.79", "mi_style": null, "mi_prinx": 559}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [570716.1636344974, 6216831.916837782]},"properties": {"vejnavn": "Kirketorvet", "husnnr": null, "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 11:43:47.467", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 11:43:47.467", "mi_style": null, "mi_prinx": 560}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [570716.5743121156, 6216834.996919917]},"properties": {"vejnavn": "Kirketorvet", "husnnr": null, "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 11:43:57.08", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 11:43:57.08", "mi_style": null, "mi_prinx": 561}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575070.7447433264, 6223252.195071867]},"properties": {"vejnavn": "Jægergårdsgade", "husnnr": "144", "invalidepladser": 1, "bemrk": "tidsbegrænset", "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 11:45:13.057", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 11:45:13.057", "mi_style": null, "mi_prinx": 562}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574936.4408418891, 6222987.421971251]},"properties": {"vejnavn": "Marselisborg Allé", "husnnr": "30b", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 11:46:52.93", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 11:46:52.93", "mi_style": null, "mi_prinx": 563}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573702.7326710331, 6224158.784515839]},"properties": {"vejnavn": "Regenburgs Plads", "husnnr": "50", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 11:48:19.28", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 11:48:19.28", "mi_style": null, "mi_prinx": 564}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573619.7098357283, 6224188.62422998]},"properties": {"vejnavn": "Regenburgsgade", "husnnr": "11", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 11:50:10.157", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 11:50:10.157", "mi_style": null, "mi_prinx": 565}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573603.5732238201, 6222298.034907595]},"properties": {"vejnavn": "Rudpolh Wulffs Gade", "husnnr": "13", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 11:51:55.07", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 11:51:55.07", "mi_style": null, "mi_prinx": 566}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574949.381326311, 6223149.484703504]},"properties": {"vejnavn": "st st blichers gade", "husnnr": "28", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 11:53:08.913", "rettet_af": "spatial_reader", "rettet_dato": "2025-07-31 10:02:57.243", "mi_style": null, "mi_prinx": 567}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574499.2238193017, 6224391.241273099]},"properties": {"vejnavn": "Teglværksgade", "husnnr": "4", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 11:58:48.823", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 11:58:48.823", "mi_style": null, "mi_prinx": 568}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575248.5108008216, 6223656.206817246]},"properties": {"vejnavn": "Toldbodgade", "husnnr": "8b", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 13:31:29.01", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 13:31:29.01", "mi_style": null, "mi_prinx": 569}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575613.2119507189, 6225969.438398356]},"properties": {"vejnavn": "Herluf Trolles gade", "husnnr": "28", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 13:35:59.73", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 13:35:59.73", "mi_style": null, "mi_prinx": 571}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575459.9619507184, 6225872.322381929]},"properties": {"vejnavn": "Otte Ruds Gade", "husnnr": "38", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 13:36:48.51", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 13:36:48.51", "mi_style": null, "mi_prinx": 572}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [572973.5414579054, 6219822.767967144]},"properties": {"vejnavn": "Rundhøj Alle", "husnnr": "129", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 13:47:28.83", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 13:47:28.83", "mi_style": null, "mi_prinx": 573}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573964.5795687882, 6225531.675564681]},"properties": {"vejnavn": "Jens Baggesens Vej", "husnnr": "84", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 13:52:36.853", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 13:52:36.853", "mi_style": null, "mi_prinx": 574}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573962.7315195069, 6225530.443531826]},"properties": {"vejnavn": "Jens Baggesens Vej", "husnnr": "84", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 13:52:50.743", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 13:52:50.743", "mi_style": null, "mi_prinx": 575}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573763.6589431843, 6225400.732252075]},"properties": {"vejnavn": "Peter Fabers Vej", "husnnr": "7", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 14:02:57.817", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 14:02:57.817", "mi_style": null, "mi_prinx": 576}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573569.8198767971, 6225558.664271047]},"properties": {"vejnavn": "Peter Fabers Vej", "husnnr": "45", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 14:03:59.61", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 14:03:59.61", "mi_style": null, "mi_prinx": 577}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573689.2009378455, 6225304.105604249]},"properties": {"vejnavn": "Viggo Stuckenbergs Vej", "husnnr": "7", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 14:05:26.077", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 14:05:26.077", "mi_style": null, "mi_prinx": 578}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [571906.5431211507, 6223317.124229979]},"properties": {"vejnavn": "Hnerik Hertz Vej", "husnnr": "54", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 14:06:25.737", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 14:06:25.737", "mi_style": null, "mi_prinx": 579}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [572263.050246407, 6223168.713552361]},"properties": {"vejnavn": "O.I. offersens Vej", "husnnr": "13", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 14:07:10.387", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 14:07:10.387", "mi_style": null, "mi_prinx": 580}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [571635.578603885, 6220454.145748499]},"properties": {"vejnavn": "Grøndalsvej ", "husnnr": "2", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 14:10:06.363", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 14:10:06.363", "mi_style": null, "mi_prinx": 581}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [571637.4266531663, 6220455.78845897]},"properties": {"vejnavn": "Grøndalsvej ", "husnnr": "2", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 14:10:17.097", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 14:10:17.097", "mi_style": null, "mi_prinx": 582}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [571642.9708010103, 6220460.511251578]},"properties": {"vejnavn": "Grøndalsvej", "husnnr": "2", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 14:10:50.553", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 14:10:50.553", "mi_style": null, "mi_prinx": 583}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [571645.8455443367, 6220461.948623242]},"properties": {"vejnavn": "Grøndalsvej", "husnnr": "2", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 14:11:00.837", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 14:11:00.837", "mi_style": null, "mi_prinx": 584}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575130.4157366346, 6223963.371970712]},"properties": {"vejnavn": "Fiskergade", "husnnr": "80", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 14:18:06.18", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 14:18:06.18", "mi_style": null, "mi_prinx": 585}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575127.8080963028, 6223964.838768398]},"properties": {"vejnavn": "Fiskergade", "husnnr": "80", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 14:18:18.71", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 14:18:18.71", "mi_style": null, "mi_prinx": 586}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575089.0245238632, 6223834.6749242265]},"properties": {"vejnavn": "Østergade", "husnnr": "48", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 14:19:11.287", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 14:19:11.287", "mi_style": null, "mi_prinx": 587}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574258.2222792607, 6222755.437371662]},"properties": {"vejnavn": "F. Vestergaards gade", "husnnr": "4", "invalidepladser": null, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 14:20:02.303", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 14:20:02.303", "mi_style": null, "mi_prinx": 588}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574263.5610882957, 6222709.852156057]},"properties": {"vejnavn": "F. Vestergaards Gade", "husnnr": "12", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 14:20:27.033", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 14:20:27.033", "mi_style": null, "mi_prinx": 589}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573703.2468583164, 6225533.67761807]},"properties": {"vejnavn": "Vilhelm Bergsøes Vej ", "husnnr": "37", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-24 13:08:01.087", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-24 13:08:01.087", "mi_style": null, "mi_prinx": 590}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574949.4344056073, 6222520.606665064]},"properties": {"vejnavn": "Adoplh Meyers Vej", "husnnr": "10", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-24 14:06:23.613", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-24 14:06:23.613", "mi_style": null, "mi_prinx": 591}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573440.4595687881, 6220071.08932238]},"properties": {"vejnavn": "Rundhøj Allé", "husnnr": "1", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-24 14:10:59.32", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-24 14:10:59.32", "mi_style": null, "mi_prinx": 592}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574108.964579056, 6219523.614989731]},"properties": {"vejnavn": "Niels Bjerres Vej", "husnnr": "33", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-24 14:54:28.78", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-24 14:54:28.78", "mi_style": null, "mi_prinx": 593}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574773.7705954819, 6222620.240246407]},"properties": {"vejnavn": "Assensgade", "husnnr": "15", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-24 15:09:24.753", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-24 15:09:24.753", "mi_style": null, "mi_prinx": 594}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573563.520197629, 6225599.931539235]},"properties": {"vejnavn": "Vilhelm Bergsøes Vej", "husnnr": "65", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-03-03 15:31:57.61", "rettet_af": "spatial_reader", "rettet_dato": "2025-03-03 15:31:57.61", "mi_style": null, "mi_prinx": 595}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573565.9366160922, 6225599.931539235]},"properties": {"vejnavn": "Vilhelm Bergsøes Vej", "husnnr": "65", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-03-03 15:32:11.45", "rettet_af": "spatial_reader", "rettet_dato": "2025-03-03 15:32:11.45", "mi_style": null, "mi_prinx": 596}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573900.4239732762, 6224444.639830079]},"properties": {"vejnavn": "Eugen Warmings Vej", "husnnr": "6", "invalidepladser": 2, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-07-24 12:35:23.093", "rettet_af": "spatial_reader", "rettet_dato": "2025-07-24 12:35:23.093", "mi_style": null, "mi_prinx": 597}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573895.0856880753, 6224474.736713882]},"properties": {"vejnavn": "Eugen Warmings Vej", "husnnr": "6", "invalidepladser": 2, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-07-24 12:36:37.753", "rettet_af": "spatial_reader", "rettet_dato": "2025-07-24 12:36:37.753", "mi_style": null, "mi_prinx": 598}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574904.906065573, 6222700.202576111]},"properties": {"vejnavn": "Hendrik Pontoppidans Gade", "husnnr": "24", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-07-24 13:10:47.673", "rettet_af": "spatial_reader", "rettet_dato": "2025-07-24 13:10:47.673", "mi_style": null, "mi_prinx": 599}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [576675.4374502097, 6227137.355086146]},"properties": {"vejnavn": "stationsgade", "husnnr": "26", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-07-28 09:34:00.233", "rettet_af": "spatial_reader", "rettet_dato": "2025-07-28 09:34:00.233", "mi_style": null, "mi_prinx": 600}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574471.4348262089, 6222940.82387054]},"properties": {"vejnavn": "Skt Anna Gade", "husnnr": null, "invalidepladser": null, "bemrk": "42", "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-07-28 14:14:27.8", "rettet_af": "spatial_reader", "rettet_dato": "2025-07-28 14:14:27.8", "mi_style": null, "mi_prinx": 601}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574477.5688115384, 6222914.615024131]},"properties": {"vejnavn": "Skt Anna Gade", "husnnr": "42", "invalidepladser": null, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-07-28 14:14:41.96", "rettet_af": "spatial_reader", "rettet_dato": "2025-07-28 14:14:41.96", "mi_style": null, "mi_prinx": 602}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575230.8720257445, 6224047.548393872]},"properties": {"vejnavn": "Kannikegade 16", "husnnr": "16", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-07-31 09:56:55.567", "rettet_af": "spatial_reader", "rettet_dato": "2025-07-31 09:56:55.567", "mi_style": null, "mi_prinx": 603}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [571983.2489361251, 6223205.13326127]},"properties": {"vejnavn": "Henrik Hertz Vej ", "husnnr": "72", "invalidepladser": 2, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-07-31 10:59:53.147", "rettet_af": "spatial_reader", "rettet_dato": "2025-07-31 10:59:53.147", "mi_style": null, "mi_prinx": 604}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [571985.1224724249, 6223202.557148858]},"properties": {"vejnavn": "Henrik Hertz Vej", "husnnr": "72", "invalidepladser": 2, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-07-31 11:01:03.507", "rettet_af": "spatial_reader", "rettet_dato": "2025-07-31 11:01:03.507", "mi_style": null, "mi_prinx": 605}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574835.1320140511, 6222779.284543324]},"properties": {"vejnavn": "Hans Broges Gade", "husnnr": "17", "invalidepladser": 2, "bemrk": "Tidsbegrænset", "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-07-31 11:15:39.89", "rettet_af": "spatial_reader", "rettet_dato": "2025-07-31 11:15:39.89", "mi_style": null, "mi_prinx": 606}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575250.902172792, 6224568.6143739]},"properties": {"vejnavn": "Studsgade ", "husnnr": "44", "invalidepladser": 2, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-07-31 13:48:01.11", "rettet_af": "spatial_reader", "rettet_dato": "2025-07-31 13:48:01.11", "mi_style": null, "mi_prinx": 607}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574412.2255140772, 6224274.489827803]},"properties": {"vejnavn": "Janus La Cours gade", "husnnr": "1", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-09-11 11:40:20.08", "rettet_af": "spatial_reader", "rettet_dato": "2025-09-11 11:40:20.08", "mi_style": null, "mi_prinx": 608}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574548.0404080742, 6226415.892238429]},"properties": {"vejnavn": "Norges Allé ", "husnnr": "2", "invalidepladser": 1, "bemrk": null, "ident": "1338", "oprettet_af": "spatial_reader", "oprettet_dato": "2025-09-11 11:43:11.467", "rettet_af": "spatial_reader", "rettet_dato": "2025-09-11 11:43:11.467", "mi_style": null, "mi_prinx": 609}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573738.9391065245, 6225498.3024416845]},"properties": {"vejnavn": "Vilhelm Bergsøes Vej", "husnnr": "23", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-09-11 11:44:27.91", "rettet_af": "spatial_reader", "rettet_dato": "2025-09-11 11:44:27.91", "mi_style": null, "mi_prinx": 610}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573740.2607020313, 6225496.834002232]},"properties": {"vejnavn": "Vilhelm Bergsøes vej", "husnnr": "23", "invalidepladser": 1, "bemrk": null, "ident": "1338", "oprettet_af": "spatial_reader", "oprettet_dato": "2025-09-11 11:44:55.213", "rettet_af": "spatial_reader", "rettet_dato": "2025-09-11 11:44:55.213", "mi_style": null, "mi_prinx": 611}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [572487.2086247086, 6221123.172494171]},"properties": {"vejnavn": "Rørdamsvej", "husnnr": "4", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-09-11 11:47:21.347", "rettet_af": "spatial_reader", "rettet_dato": "2025-09-11 11:47:21.347", "mi_style": null, "mi_prinx": 612}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [572485.3438228437, 6221125.736596736]},"properties": {"vejnavn": "Rørdamsvej", "husnnr": "4", "invalidepladser": 1, "bemrk": null, "ident": "1338", "oprettet_af": "spatial_reader", "oprettet_dato": "2025-09-11 11:47:40.887", "rettet_af": "spatial_reader", "rettet_dato": "2025-09-11 11:47:40.887", "mi_style": null, "mi_prinx": 613}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573450.7706904352, 6221551.299040821]},"properties": {"vejnavn": "H.C. Ørsteds Vej", "husnnr": "3b", "invalidepladser": 1, "bemrk": null, "ident": "1338", "oprettet_af": "spatial_reader", "oprettet_dato": "2025-09-11 11:49:03.467", "rettet_af": "spatial_reader", "rettet_dato": "2025-09-11 11:49:03.467", "mi_style": null, "mi_prinx": 614}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574422.5215850822, 6227269.3811188815]},"properties": {"vejnavn": "Skrydstrupvej", "husnnr": "15", "invalidepladser": 1, "bemrk": null, "ident": "1338", "oprettet_af": "spatial_reader", "oprettet_dato": "2025-09-11 11:50:15.83", "rettet_af": "spatial_reader", "rettet_dato": "2025-09-11 11:50:15.83", "mi_style": null, "mi_prinx": 615}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574201.3469197123, 6222224.453960875]},"properties": {"vejnavn": "Ellemarksvej ", "husnnr": "3", "invalidepladser": 1, "bemrk": null, "ident": "1338", "oprettet_af": "spatial_reader", "oprettet_dato": "2025-09-11 11:51:52.827", "rettet_af": "spatial_reader", "rettet_dato": "2025-09-11 11:51:52.827", "mi_style": null, "mi_prinx": 616}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574261.9134668851, 6223538.282346269]},"properties": {"vejnavn": "Eckersbergsgade", "husnnr": "30", "invalidepladser": 1, "bemrk": "1345", "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-12-02 13:14:47.253", "rettet_af": "spatial_reader", "rettet_dato": "2025-12-02 13:14:47.253", "mi_style": null, "mi_prinx": 617}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [572304.1753244308, 6223126.011642109]},"properties": {"vejnavn": "O. I. Offersensvej ", "husnnr": "1", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2026-02-24 12:51:35.733", "rettet_af": "spatial_reader", "rettet_dato": "2026-02-24 12:51:35.733", "mi_style": null, "mi_prinx": 618}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574370.9164150944, 6222348.226415094]},"properties": {"vejnavn": "Marselis Boulevard", "husnnr": "33", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2026-02-24 14:21:24.417", "rettet_af": "spatial_reader", "rettet_dato": "2026-02-24 14:21:24.417", "mi_style": null, "mi_prinx": 619}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574625.108490566, 6226140.433962264]},"properties": {"vejnavn": "Brendstrupvej", "husnnr": "3", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2026-02-24 14:22:33.083", "rettet_af": "spatial_reader", "rettet_dato": "2026-02-24 14:22:33.083", "mi_style": null, "mi_prinx": 620}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575667.7509942062, 6225512.529924879]},"properties": {"vejnavn": "Trøjborgvej", "husnnr": "2b", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2026-03-03 15:32:27.96", "rettet_af": "spatial_reader", "rettet_dato": "2026-03-03 15:32:27.96", "mi_style": null, "mi_prinx": 621}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575717.5020655771, 6225812.445111568]},"properties": {"vejnavn": "Otte Ruds Gade", "husnnr": "5", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2026-03-10 15:36:13.387", "rettet_af": "spatial_reader", "rettet_dato": "2026-03-10 15:36:13.387", "mi_style": null, "mi_prinx": 622}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574461.6616818061, 6226572.319186298]},"properties": {"vejnavn": "Stockholmsgade", "husnnr": "1", "invalidepladser": 2, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2026-03-10 16:10:04.953", "rettet_af": "spatial_reader", "rettet_dato": "2026-03-10 16:10:04.953", "mi_style": null, "mi_prinx": 623}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575466.6230287044, 6226492.72476525]},"properties": {"vejnavn": "Skovfaldet", "husnnr": "12", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2026-03-24 13:49:38.32", "rettet_af": "spatial_reader", "rettet_dato": "2026-03-24 13:49:38.32", "mi_style": null, "mi_prinx": 624}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574060.9656603774, 6222480.358490566]},"properties": {"vejnavn": "Hans Schourups Gade", "husnnr": "6", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2026-04-14 13:45:00.16", "rettet_af": "spatial_reader", "rettet_dato": "2026-04-14 13:45:00.16", "mi_style": null, "mi_prinx": 626}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574258.8724698942, 6211072.413328694]},"properties": {"vejnavn": "Dampmøllevej", "husnnr": "4", "invalidepladser": 2, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2026-09-04 14:50:52.313", "rettet_af": "spatial_reader", "rettet_dato": "2026-09-04 14:50:52.313", "mi_style": null, "mi_prinx": 628}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574259.8084374957, 6211070.354199971]},"properties": {"vejnavn": "Dampmøllevej ", "husnnr": "4", "invalidepladser": 2, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2026-09-04 14:51:13.877", "rettet_af": "spatial_reader", "rettet_dato": "2026-09-04 14:51:13.877", "mi_style": null, "mi_prinx": 629}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [572717.6960377358, 6224879.641509433]},"properties": {"vejnavn": "Præstevamgsvej", "husnnr": "4", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2026-09-04 14:52:51.823", "rettet_af": "spatial_reader", "rettet_dato": "2026-09-04 14:52:51.823", "mi_style": null, "mi_prinx": 630}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573286.2358490566, 6225834.424528301]},"properties": {"vejnavn": "Majdalen", "husnnr": "1", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2026-09-04 14:54:06.53", "rettet_af": "spatial_reader", "rettet_dato": "2026-09-04 14:54:06.53", "mi_style": null, "mi_prinx": 631}}]} +{ "type": "FeatureCollection","crs": {"type": "name", "properties": {"name": "EPSG:25832"}}, "bbox": [570415.7999999999,6211070.354199971,577384.3500328106,6232262.860918405],"features": [{"type": "Feature","geometry": {"type": "Point","coordinates": [575153.9524951308, 6224260.609753487]},"properties": {"vejnavn": "Domkirkeplads/Bispegade", "husnnr": "1", "invalidepladser": 6, "bemrk": null, "ident": "P", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:23.91", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:23.91", "mi_style": null, "mi_prinx": 172}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574656.6043964146, 6223886.745852402]},"properties": {"vejnavn": "Christiansgade", "husnnr": "2", "invalidepladser": 5, "bemrk": null, "ident": "P", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:23.943", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:23.943", "mi_style": null, "mi_prinx": 173}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574519.3323188772, 6223394.810052871]},"properties": {"vejnavn": "Krigersvej", "husnnr": "5", "invalidepladser": 4, "bemrk": null, "ident": "P", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:24.08", "rettet_af": "spatial_reader", "rettet_dato": "2025-07-31 10:04:59.57", "mi_style": null, "mi_prinx": 175}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574916.9504383737, 6223961.870560985]},"properties": {"vejnavn": "Telefonsmøgen / Busgaden", "husnnr": "6", "invalidepladser": 3, "bemrk": null, "ident": "P", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:24.113", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:24.113", "mi_style": null, "mi_prinx": 176}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574742.8394360626, 6224182.215710367]},"properties": {"vejnavn": "Grønnegade", "husnnr": "3", "invalidepladser": 2, "bemrk": null, "ident": "P", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:24.15", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:24.15", "mi_style": null, "mi_prinx": 177}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574727.5186573606, 6224387.563912335]},"properties": {"vejnavn": "Klostergade 1", "husnnr": "74", "invalidepladser": 2, "bemrk": null, "ident": "P", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:24.193", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:24.193", "mi_style": null, "mi_prinx": 178}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574855.8060164271, 6224401.099589322]},"properties": {"vejnavn": "Klostergade 2", "husnnr": "56", "invalidepladser": 1, "bemrk": null, "ident": "P", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:24.26", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 11:01:04.027", "mi_style": null, "mi_prinx": 179}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574504.0892603148, 6223553.9135994455]},"properties": {"vejnavn": "Skt. Nicolaus Gade", "husnnr": "1 til 3", "invalidepladser": 2, "bemrk": null, "ident": "P", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:24.363", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:24.363", "mi_style": null, "mi_prinx": 181}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574952.5463860369, 6223535.318275151]},"properties": {"vejnavn": "Ny Banegårdsgade", "husnnr": "49", "invalidepladser": 2, "bemrk": null, "ident": "P", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:24.403", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 14:16:08.26", "mi_style": null, "mi_prinx": 182}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575228.2588088225, 6224049.9438427165]},"properties": {"vejnavn": "Kannikegade", "husnnr": "16A", "invalidepladser": 2, "bemrk": "Tidsbegrænset", "ident": "P", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:24.46", "rettet_af": "spatial_reader", "rettet_dato": "2025-07-31 09:57:11.063", "mi_style": null, "mi_prinx": 183}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575319.8423906788, 6224763.017489845]},"properties": {"vejnavn": "Nørreport", "husnnr": "22", "invalidepladser": 2, "bemrk": null, "ident": "P", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:24.51", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:24.51", "mi_style": null, "mi_prinx": 184}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574890.2916237647, 6223681.297670785]},"properties": {"vejnavn": "Rosenkrantzgade", "husnnr": "24", "invalidepladser": 1, "bemrk": null, "ident": "P", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:24.557", "rettet_af": "spatial_reader", "rettet_dato": "2025-12-02 14:37:23.03", "mi_style": null, "mi_prinx": 185}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574751.5470476393, 6223649.994042548]},"properties": {"vejnavn": "Park Alle 2", "husnnr": "2", "invalidepladser": 1, "bemrk": null, "ident": "P", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:24.61", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:24.61", "mi_style": null, "mi_prinx": 186}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575067.4865718425, 6224480.395016832]},"properties": {"vejnavn": "Borggade 1", "husnnr": "9", "invalidepladser": 1, "bemrk": null, "ident": "P", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:24.657", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:24.657", "mi_style": null, "mi_prinx": 187}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574636.8473534812, 6223433.838040478]},"properties": {"vejnavn": "Orla Lehmanns Alle", "husnnr": "7", "invalidepladser": 1, "bemrk": null, "ident": "P", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:24.743", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:24.743", "mi_style": null, "mi_prinx": 188}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574714.8, 6223554.750000001]},"properties": {"vejnavn": "Johannes Bjergs Gade", "husnnr": "", "invalidepladser": 1, "bemrk": "På hjørner ved Banegårdspladsen 14", "ident": "1185", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:24.773", "rettet_af": "spatial_reader", "rettet_dato": "2020-03-17 08:49:33.863", "mi_style": null, "mi_prinx": 189}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574779.9704729278, 6223780.417495232]},"properties": {"vejnavn": "Rådhuspladsen", "husnnr": "5", "invalidepladser": 1, "bemrk": null, "ident": "P", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:24.81", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:24.81", "mi_style": null, "mi_prinx": 190}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575021.1449268986, 6223906.111910498]},"properties": {"vejnavn": "Ferdinand Sallings Stræde", "husnnr": "4", "invalidepladser": 1, "bemrk": null, "ident": "P", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:24.847", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:24.847", "mi_style": null, "mi_prinx": 191}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575028.063190263, 6223924.808104941]},"properties": {"vejnavn": "Ferdinand Sallings Stræde", "husnnr": "4", "invalidepladser": 1, "bemrk": null, "ident": "P", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:24.873", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:24.873", "mi_style": null, "mi_prinx": 192}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574539.4144572791, 6224578.814983732]},"properties": {"vejnavn": "Grønnegade", "husnnr": "91", "invalidepladser": 1, "bemrk": null, "ident": "P", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:24.907", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:24.907", "mi_style": null, "mi_prinx": 193}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574533.8732499122, 6224584.343858345]},"properties": {"vejnavn": "Grønnegade", "husnnr": "91", "invalidepladser": 1, "bemrk": null, "ident": "P", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:24.933", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:24.933", "mi_style": null, "mi_prinx": 194}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575460.8322248239, 6224695.803278689]},"properties": {"vejnavn": "Kystvejen", "husnnr": "55", "invalidepladser": 1, "bemrk": null, "ident": "P", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:24.97", "rettet_af": "spatial_reader", "rettet_dato": "2025-07-28 09:10:54.057", "mi_style": null, "mi_prinx": 195}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575461.5348009364, 6224697.442622952]},"properties": {"vejnavn": "Kystvejen", "husnnr": "55", "invalidepladser": 1, "bemrk": null, "ident": "P", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:25.003", "rettet_af": "spatial_reader", "rettet_dato": "2025-07-28 09:10:30.637", "mi_style": null, "mi_prinx": 196}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575455.3216124629, 6226039.447676172]},"properties": {"vejnavn": "Steen Billes Torv", "husnnr": "6", "invalidepladser": 1, "bemrk": null, "ident": "P", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:25.037", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:25.037", "mi_style": null, "mi_prinx": 197}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573959.1296566332, 6223167.542244217]},"properties": {"vejnavn": "Ankersgade", "husnnr": "21", "invalidepladser": 1, "bemrk": null, "ident": "P", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:25.07", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:25.07", "mi_style": null, "mi_prinx": 198}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573965.1903521908, 6223169.331879942]},"properties": {"vejnavn": "Ankersgade", "husnnr": "21", "invalidepladser": 1, "bemrk": null, "ident": "P", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:25.093", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:25.093", "mi_style": null, "mi_prinx": 199}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573771.8681415829, 6222925.054833357]},"properties": {"vejnavn": "Læssøesgade", "husnnr": "85", "invalidepladser": 1, "bemrk": null, "ident": "P", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:25.127", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 11:14:58.7", "mi_style": null, "mi_prinx": 200}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573866.0093369979, 6222685.91027901]},"properties": {"vejnavn": "Harald Jenesens Plads", "husnnr": null, "invalidepladser": 1, "bemrk": null, "ident": "P", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:25.163", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:25.163", "mi_style": null, "mi_prinx": 201}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573940.9310782718, 6222759.405319308]},"properties": {"vejnavn": "Harald Jenesens Plads", "husnnr": null, "invalidepladser": 1, "bemrk": null, "ident": "P", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:25.19", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:25.19", "mi_style": null, "mi_prinx": 202}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574372.5907076919, 6222033.218436124]},"properties": {"vejnavn": "Skovbrynet", "husnnr": null, "invalidepladser": 1, "bemrk": null, "ident": "P", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:25.297", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 11:33:25.34", "mi_style": null, "mi_prinx": 203}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574368.4426301755, 6222031.638216118]},"properties": {"vejnavn": "Skovbrynet", "husnnr": null, "invalidepladser": 1, "bemrk": null, "ident": "P", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:25.323", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 11:33:16.533", "mi_style": null, "mi_prinx": 204}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574370.6154326841, 6222032.23079862]},"properties": {"vejnavn": "Skovbrynet", "husnnr": null, "invalidepladser": 1, "bemrk": null, "ident": "P", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:25.35", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 11:33:06.723", "mi_style": null, "mi_prinx": 205}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574136.7129774133, 6222538.070841889]},"properties": {"vejnavn": "Chr. Wærums Vej", "husnnr": "29", "invalidepladser": 1, "bemrk": null, "ident": "P", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:25.387", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 09:47:59.483", "mi_style": null, "mi_prinx": 206}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574736.8941823252, 6222561.355631749]},"properties": {"vejnavn": "Dalgas Avenue", "husnnr": "33", "invalidepladser": 1, "bemrk": null, "ident": "P", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:25.427", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:25.427", "mi_style": null, "mi_prinx": 207}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574086.8495389346, 6223044.81722454]},"properties": {"vejnavn": "Max Müllers Gade", "husnnr": null, "invalidepladser": 1, "bemrk": null, "ident": "P", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:25.5", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:25.5", "mi_style": null, "mi_prinx": 209}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575326.9832918391, 6224757.308651863]},"properties": {"vejnavn": "Nørreport", "husnnr": null, "invalidepladser": 1, "bemrk": null, "ident": "P", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:25.53", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:25.53", "mi_style": null, "mi_prinx": 210}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575469.2735810118, 6224466.787786544]},"properties": {"vejnavn": "Inge Lehmanns Gade", "husnnr": null, "invalidepladser": 1, "bemrk": "Navitas", "ident": "P", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:25.567", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:25.567", "mi_style": null, "mi_prinx": 211}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575471.3432879301, 6224465.178114189]},"properties": {"vejnavn": "Inge Lehmanns Gade", "husnnr": null, "invalidepladser": 1, "bemrk": "Navitas", "ident": "P", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:25.59", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:25.59", "mi_style": null, "mi_prinx": 212}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575473.4129948484, 6224463.568441832]},"properties": {"vejnavn": "Inge Lehmanns Gade", "husnnr": null, "invalidepladser": 1, "bemrk": "Navitas", "ident": "P", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:25.617", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:25.617", "mi_style": null, "mi_prinx": 213}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575475.4744559224, 6224461.968767442]},"properties": {"vejnavn": "Inge Lehmanns Gade", "husnnr": null, "invalidepladser": 1, "bemrk": "Navitas", "ident": "P", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:25.647", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:25.647", "mi_style": null, "mi_prinx": 214}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575477.5441628407, 6224460.129141892]},"properties": {"vejnavn": "Inge Lehmanns Gade", "husnnr": null, "invalidepladser": 1, "bemrk": "Navitas", "ident": "P", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:25.673", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:25.673", "mi_style": null, "mi_prinx": 215}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575479.1521024784, 6224458.289516343]},"properties": {"vejnavn": "Inge Lehmanns Gade", "husnnr": null, "invalidepladser": 1, "bemrk": "Navitas", "ident": "P", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:25.773", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:25.773", "mi_style": null, "mi_prinx": 216}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575481.2218093968, 6224456.219937599]},"properties": {"vejnavn": "Inge Lehmanns Gade", "husnnr": null, "invalidepladser": 1, "bemrk": "Navitas", "ident": "P", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:25.797", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:25.797", "mi_style": null, "mi_prinx": 217}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575483.0523868304, 6224454.620263209]},"properties": {"vejnavn": "Inge Lehmanns Gade", "husnnr": null, "invalidepladser": 1, "bemrk": "Navitas", "ident": "P", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:25.823", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:25.823", "mi_style": null, "mi_prinx": 218}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575485.1220937488, 6224452.320731272]},"properties": {"vejnavn": "Inge Lehmanns Gade", "husnnr": null, "invalidepladser": 1, "bemrk": "Navitas", "ident": "P", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:25.847", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:25.85", "mi_style": null, "mi_prinx": 219}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575487.1918006671, 6224449.791246141]},"properties": {"vejnavn": "Inge Lehmanns Gade", "husnnr": null, "invalidepladser": 1, "bemrk": "Navitas", "ident": "P", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:25.88", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:25.88", "mi_style": null, "mi_prinx": 220}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575515.433817381, 6224381.585129299]},"properties": {"vejnavn": "Inge Lehmanns Gade", "husnnr": null, "invalidepladser": 1, "bemrk": "Navitas", "ident": "P", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:25.907", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:25.907", "mi_style": null, "mi_prinx": 221}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575517.96529158, 6224381.585129299]},"properties": {"vejnavn": "Inge Lehmanns Gade", "husnnr": null, "invalidepladser": 1, "bemrk": "Navitas", "ident": "P", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:25.93", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:25.93", "mi_style": null, "mi_prinx": 222}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575520.9502872152, 6224381.585129299]},"properties": {"vejnavn": "Inge Lehmanns Gade", "husnnr": null, "invalidepladser": 1, "bemrk": "Navitas", "ident": "P", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:25.957", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:25.957", "mi_style": null, "mi_prinx": 223}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575523.9352828503, 6224381.585129299]},"properties": {"vejnavn": "Inge Lehmanns Gade", "husnnr": null, "invalidepladser": 1, "bemrk": "Navitas", "ident": "P", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:25.983", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:25.983", "mi_style": null, "mi_prinx": 224}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575526.9202784855, 6224381.585129299]},"properties": {"vejnavn": "Inge Lehmanns Gade", "husnnr": null, "invalidepladser": 1, "bemrk": "Navitas", "ident": "P", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:26.007", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:26.007", "mi_style": null, "mi_prinx": 225}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575529.6743904804, 6224381.585129299]},"properties": {"vejnavn": "Inge Lehmanns Gade", "husnnr": null, "invalidepladser": 1, "bemrk": "Navitas", "ident": "P", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:26.033", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:26.033", "mi_style": null, "mi_prinx": 226}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575532.6593861155, 6224381.585129299]},"properties": {"vejnavn": "Inge Lehmanns Gade", "husnnr": null, "invalidepladser": 1, "bemrk": "Navitas", "ident": "P", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:26.067", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:26.067", "mi_style": null, "mi_prinx": 227}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575535.4217439546, 6224381.585129299]},"properties": {"vejnavn": "Inge Lehmanns Gade", "husnnr": null, "invalidepladser": 1, "bemrk": "Navitas", "ident": "P", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:26.09", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:26.09", "mi_style": null, "mi_prinx": 228}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575538.4067395899, 6224381.585129299]},"properties": {"vejnavn": "Inge Lehmanns Gade", "husnnr": null, "invalidepladser": 1, "bemrk": "Navitas", "ident": "P", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:26.117", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:26.117", "mi_style": null, "mi_prinx": 229}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575540.9299679445, 6224381.585129299]},"properties": {"vejnavn": "Inge Lehmanns Gade", "husnnr": null, "invalidepladser": 1, "bemrk": "Navitas", "ident": "P", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:26.157", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:26.157", "mi_style": null, "mi_prinx": 230}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574394.576202219, 6223499.304714926]},"properties": {"vejnavn": "Valdemarsgade", "husnnr": "20", "invalidepladser": 1, "bemrk": null, "ident": "1102", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:26.19", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:26.19", "mi_style": null, "mi_prinx": 231}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575033.2828097024, 6222970.362379608]},"properties": {"vejnavn": "Heibergsgade", "husnnr": "27", "invalidepladser": 1, "bemrk": null, "ident": "1104", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:26.223", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:26.223", "mi_style": null, "mi_prinx": 232}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573499.0, 6224197.1000000015]},"properties": {"vejnavn": "Regensburgsgade", "husnnr": "12", "invalidepladser": 1, "bemrk": null, "ident": "1104", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:26.257", "rettet_af": "spatial_reader", "rettet_dato": "2020-03-17 09:24:06.55", "mi_style": null, "mi_prinx": 233}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574459.3308174759, 6223990.544724442]},"properties": {"vejnavn": "Marstrandsgade", "husnnr": "2", "invalidepladser": 1, "bemrk": null, "ident": "1104", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:26.287", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:26.287", "mi_style": null, "mi_prinx": 234}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574218.7335726058, 6224300.371660066]},"properties": {"vejnavn": "Mønsgade", "husnnr": "4", "invalidepladser": 1, "bemrk": null, "ident": "1108", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:26.32", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:26.32", "mi_style": null, "mi_prinx": 235}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574841.6081590408, 6224887.112230719]},"properties": {"vejnavn": "Sjællandsgade", "husnnr": "92", "invalidepladser": 1, "bemrk": null, "ident": "1108", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:26.353", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:26.353", "mi_style": null, "mi_prinx": 236}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573564.4, 6224497.9]},"properties": {"vejnavn": "Tage Hansens Gade", "husnnr": "31B", "invalidepladser": 1, "bemrk": null, "ident": "1108", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:26.38", "rettet_af": "spatial_reader", "rettet_dato": "2020-03-17 11:49:18.623", "mi_style": null, "mi_prinx": 237}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573350.8007395364, 6225946.216653077]},"properties": {"vejnavn": "Hammershusvej", "husnnr": "41", "invalidepladser": 1, "bemrk": "Hammershusvej mellem nr. 41 og nr. 43", "ident": "1109", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:26.413", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:26.413", "mi_style": null, "mi_prinx": 238}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575124.3828974852, 6225601.696779101]},"properties": {"vejnavn": "Skt. Johannes Allé", "husnnr": "4", "invalidepladser": 1, "bemrk": "Tidsbegrænset", "ident": "1110", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:26.443", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 09:00:33.773", "mi_style": null, "mi_prinx": 239}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575252.1357631639, 6224570.226731846]},"properties": {"vejnavn": "Studsgade", "husnnr": "44", "invalidepladser": 2, "bemrk": null, "ident": "1111", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:26.473", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:26.473", "mi_style": null, "mi_prinx": 240}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574824.2671484861, 6226340.746347698]},"properties": {"vejnavn": "Skovvangsvej", "husnnr": "58", "invalidepladser": 1, "bemrk": null, "ident": "1111", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:26.507", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:26.507", "mi_style": null, "mi_prinx": 241}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575281.3650102671, 6223652.100041065]},"properties": {"vejnavn": "Toldbodgade", "husnnr": "6", "invalidepladser": 1, "bemrk": "Ud for svømmehallen", "ident": "1112", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:26.537", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 13:31:09.807", "mi_style": null, "mi_prinx": 242}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573871.8803781366, 6222609.255881792]},"properties": {"vejnavn": "Carl Bertelsens Gade", "husnnr": "3", "invalidepladser": 1, "bemrk": "I nærheden af Carl Bertelsens Gade nr. 3", "ident": "1113", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:26.567", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:26.567", "mi_style": null, "mi_prinx": 243}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574261.0265080002, 6223960.050931365]},"properties": {"vejnavn": "Jerichausgade", "husnnr": "24", "invalidepladser": 1, "bemrk": "I den eksisterende skråparkering ud for nr. 24", "ident": "1113", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:26.657", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:26.657", "mi_style": null, "mi_prinx": 245}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573354.775236487, 6224149.5423609335]},"properties": {"vejnavn": "Silkeborgvej", "husnnr": "108", "invalidepladser": 1, "bemrk": null, "ident": "1113", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:26.717", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:26.717", "mi_style": null, "mi_prinx": 246}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574302.3464337677, 6219824.742661404]},"properties": {"vejnavn": "Kridthøjtorvet", "husnnr": null, "invalidepladser": 1, "bemrk": null, "ident": "1113", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:26.763", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:26.763", "mi_style": null, "mi_prinx": 247}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574881.526291278, 6222643.79885067]},"properties": {"vejnavn": "Assensgade", "husnnr": "3", "invalidepladser": 1, "bemrk": null, "ident": "1114", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:26.92", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:26.92", "mi_style": null, "mi_prinx": 248}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574120.6245171713, 6222766.663841857]},"properties": {"vejnavn": "Ingerslev Boulevard", "husnnr": "19", "invalidepladser": 1, "bemrk": "I nærheden af Ingerslev Boulevard nr. 19", "ident": "1114", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:27.0", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:27.0", "mi_style": null, "mi_prinx": 250}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574835.6134302375, 6222775.322079497]},"properties": {"vejnavn": "Hans Broges Gade", "husnnr": "17", "invalidepladser": 2, "bemrk": "Borger ønsker pladsen tidsbegrænset, da det er ved arbejdspladsen", "ident": "1116", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:27.083", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:27.083", "mi_style": null, "mi_prinx": 252}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575090.5666900271, 6223833.916605643]},"properties": {"vejnavn": "Østergade", "husnnr": "35", "invalidepladser": 1, "bemrk": null, "ident": "1116", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:27.143", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:27.143", "mi_style": null, "mi_prinx": 253}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575371.6015553251, 6224793.341317518]},"properties": {"vejnavn": "Helgenæsgade", "husnnr": "8", "invalidepladser": 1, "bemrk": null, "ident": "1116", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:27.187", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:27.187", "mi_style": null, "mi_prinx": 254}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574443.9523178637, 6224528.715181402]},"properties": {"vejnavn": "Sejrøgade", "husnnr": "11", "invalidepladser": 1, "bemrk": "I nærheden af Sejrøgade nr.11", "ident": "1116", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:27.243", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:27.243", "mi_style": null, "mi_prinx": 255}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575462.4460219346, 6224699.380442982]},"properties": {"vejnavn": "Kystvejen", "husnnr": "55", "invalidepladser": 3, "bemrk": "Den ene af tre eksisterende HC-pladser ud for nr. 53-55 tidsbegrænset fra kl.8.00-14.00", "ident": "1118", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:27.29", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:27.29", "mi_style": null, "mi_prinx": 256}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [572618.3471282512, 6224015.439657151]},"properties": {"vejnavn": "Silkeborgvej", "husnnr": "226", "invalidepladser": 1, "bemrk": null, "ident": "gl", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:27.343", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:27.343", "mi_style": null, "mi_prinx": 257}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [572934.9133366208, 6219773.593072755]},"properties": {"vejnavn": "Rundhøj Allé", "husnnr": "137", "invalidepladser": 1, "bemrk": null, "ident": "gl", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:27.393", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:27.393", "mi_style": null, "mi_prinx": 258}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [572966.1156114371, 6219796.788351424]},"properties": {"vejnavn": "Rundhøj Allé", "husnnr": "135", "invalidepladser": 1, "bemrk": null, "ident": "gl", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:27.453", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:27.453", "mi_style": null, "mi_prinx": 259}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573958.7998228613, 6222500.128094437]},"properties": {"vejnavn": "P.P. Ørums Gade", "husnnr": "9", "invalidepladser": 1, "bemrk": null, "ident": "gl", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:27.513", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:27.513", "mi_style": null, "mi_prinx": 260}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574108.2557507273, 6222343.6199512165]},"properties": {"vejnavn": "P.P. Ørums Gade", "husnnr": "2", "invalidepladser": 2, "bemrk": null, "ident": "gl", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:27.57", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:27.57", "mi_style": null, "mi_prinx": 261}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574964.7928269794, 6222704.936406298]},"properties": {"vejnavn": "Strandparken", "husnnr": "36", "invalidepladser": 1, "bemrk": null, "ident": "gl", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:27.613", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:27.613", "mi_style": null, "mi_prinx": 262}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574986.6525602082, 6222771.112936256]},"properties": {"vejnavn": "Strandparken", "husnnr": "29", "invalidepladser": 1, "bemrk": null, "ident": "gl", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:27.65", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:27.65", "mi_style": null, "mi_prinx": 263}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574174.5193554903, 6222819.103167984]},"properties": {"vejnavn": "Ingerslevs Boulevard", "husnnr": "1", "invalidepladser": 1, "bemrk": null, "ident": "gl", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:27.7", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:27.7", "mi_style": null, "mi_prinx": 264}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574259.3031265422, 6222874.021989416]},"properties": {"vejnavn": "Lundinsgade", "husnnr": "1", "invalidepladser": 1, "bemrk": null, "ident": "gl", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:27.753", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:27.753", "mi_style": null, "mi_prinx": 265}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574732.0621175678, 6222787.729553992]},"properties": {"vejnavn": "Tietgens Plads", "husnnr": "11", "invalidepladser": 1, "bemrk": "Efter henvenddelse fra Pia Møller", "ident": "gl", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:27.81", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:27.81", "mi_style": null, "mi_prinx": 266}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574820.7791563489, 6223119.082108137]},"properties": {"vejnavn": "Brammersgade", "husnnr": "21", "invalidepladser": 1, "bemrk": null, "ident": "gl", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:27.857", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:27.857", "mi_style": null, "mi_prinx": 267}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574401.956232864, 6223179.749759412]},"properties": {"vejnavn": "Godthåbsgade", "husnnr": null, "invalidepladser": 1, "bemrk": "Overfor nr. 2", "ident": "gl", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:27.963", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:27.963", "mi_style": null, "mi_prinx": 268}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574564.0530400358, 6223225.930359485]},"properties": {"vejnavn": "Dybbølsgade", "husnnr": "15", "invalidepladser": 1, "bemrk": null, "ident": "gl", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:28.01", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:28.01", "mi_style": null, "mi_prinx": 269}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574140.167168153, 6223217.512073003]},"properties": {"vejnavn": "Absolonsgade", "husnnr": "28", "invalidepladser": 2, "bemrk": null, "ident": "gl", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:28.043", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:28.043", "mi_style": null, "mi_prinx": 270}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574275.7206025358, 6223430.478724257]},"properties": {"vejnavn": "Sonnesgade", "husnnr": "7", "invalidepladser": 3, "bemrk": null, "ident": "gl", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:28.083", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:28.083", "mi_style": null, "mi_prinx": 271}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574256.1861973983, 6223461.63238302]},"properties": {"vejnavn": "Echersbergsgade", "husnnr": "43", "invalidepladser": 2, "bemrk": null, "ident": "gl", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:28.15", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:28.15", "mi_style": null, "mi_prinx": 273}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574374.357392005, 6223467.071275949]},"properties": {"vejnavn": "Valdemarsgade", "husnnr": "28", "invalidepladser": 1, "bemrk": null, "ident": "gl", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:28.187", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:28.187", "mi_style": null, "mi_prinx": 274}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574769.5764453339, 6223465.5386415245]},"properties": {"vejnavn": "Banegårdspladsen", "husnnr": "17", "invalidepladser": 2, "bemrk": null, "ident": "gl", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:28.223", "rettet_af": "spatial_reader", "rettet_dato": "2025-07-31 09:53:06.79", "mi_style": null, "mi_prinx": 275}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574924.5695985033, 6223516.741165786]},"properties": {"vejnavn": "Ny Banegårdsgade", "husnnr": "40", "invalidepladser": 2, "bemrk": "Overfor nr. 45", "ident": "gl", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:28.26", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:28.26", "mi_style": null, "mi_prinx": 276}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575241.6470492193, 6223772.769052051]},"properties": {"vejnavn": "Ridderstræde", "husnnr": null, "invalidepladser": 1, "bemrk": "Overfor nr 1", "ident": "gl", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:28.3", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:28.3", "mi_style": null, "mi_prinx": 277}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575132.5344444042, 6223962.394105587]},"properties": {"vejnavn": "Fiskergade", "husnnr": "84", "invalidepladser": 2, "bemrk": null, "ident": "gl", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:28.367", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 14:17:48.05", "mi_style": null, "mi_prinx": 279}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574746.0553153381, 6224061.31032031]},"properties": {"vejnavn": "Christiansgade", "husnnr": "29S", "invalidepladser": 3, "bemrk": null, "ident": "gl", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:28.437", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:28.437", "mi_style": null, "mi_prinx": 281}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575181.3781732596, 6224118.438691995]},"properties": {"vejnavn": "Teatergaden", "husnnr": null, "invalidepladser": 3, "bemrk": "Sydlig endeaf vejen, på nordlig side", "ident": "E-8686", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:28.473", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:28.473", "mi_style": null, "mi_prinx": 282}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575222.3270360337, 6224141.414015435]},"properties": {"vejnavn": "Teatergaden", "husnnr": null, "invalidepladser": 4, "bemrk": "Nordlig ende af vejen , nordlig side", "ident": "E-8686", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:28.51", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:28.51", "mi_style": null, "mi_prinx": 283}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574737.7847335092, 6224144.713343865]},"properties": {"vejnavn": "Grønnegade", "husnnr": "5", "invalidepladser": 1, "bemrk": null, "ident": "gl", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:28.587", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:28.587", "mi_style": null, "mi_prinx": 285}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574634.6704505871, 6224881.683335755]},"properties": {"vejnavn": "Falstergade", "husnnr": "1", "invalidepladser": 1, "bemrk": null, "ident": "gl", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:28.66", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:28.66", "mi_style": null, "mi_prinx": 287}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573664.0273809661, 6224806.278684154]},"properties": {"vejnavn": "Eugen Warmingsvej", "husnnr": "12", "invalidepladser": 2, "bemrk": "Overfor nr. 39", "ident": "gl", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:28.703", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:28.703", "mi_style": null, "mi_prinx": 288}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573900.8397833044, 6224443.072613699]},"properties": {"vejnavn": "Eugen Warmingsvej", "husnnr": "6", "invalidepladser": 2, "bemrk": null, "ident": "gl", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:28.74", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:28.74", "mi_style": null, "mi_prinx": 289}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573876.0610211948, 6224382.904860672]},"properties": {"vejnavn": "Ringkøbingvej", "husnnr": "33", "invalidepladser": 1, "bemrk": null, "ident": "gl", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:28.777", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:28.777", "mi_style": null, "mi_prinx": 290}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573858.2335058267, 6224344.252728201]},"properties": {"vejnavn": "Ringkøbingvej", "husnnr": "27", "invalidepladser": 1, "bemrk": null, "ident": "gl", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:28.81", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:28.81", "mi_style": null, "mi_prinx": 291}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574637.7049212881, 6224717.846684231]},"properties": {"vejnavn": "Hjarnøgade", "husnnr": "5", "invalidepladser": 2, "bemrk": "Overfor nr 5", "ident": "gl", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:28.843", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:28.843", "mi_style": null, "mi_prinx": 292}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574863.3524504495, 6224285.3847106155]},"properties": {"vejnavn": "Vestergade", "husnnr": "22", "invalidepladser": 1, "bemrk": null, "ident": "gl", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:28.88", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:28.88", "mi_style": null, "mi_prinx": 293}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574537.1138667205, 6224140.554190449]},"properties": {"vejnavn": "Møllegade", "husnnr": "1", "invalidepladser": 1, "bemrk": null, "ident": "gl", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:28.917", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:28.917", "mi_style": null, "mi_prinx": 294}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575074.9490609304, 6224661.438166022]},"properties": {"vejnavn": "Anholtsgade", "husnnr": "6", "invalidepladser": 1, "bemrk": null, "ident": "gl", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:28.963", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:28.963", "mi_style": null, "mi_prinx": 295}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [572960.45896225, 6225756.165337472]},"properties": {"vejnavn": "Musvågevej", "husnnr": "4", "invalidepladser": 2, "bemrk": null, "ident": "gl", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:29.073", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:51:29.073", "mi_style": null, "mi_prinx": 296}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575340.1766427128, 6224351.371279241]},"properties": {"vejnavn": "Olufgade", "husnnr": "3", "invalidepladser": 1, "bemrk": "Tidsbegrænset", "ident": "gl", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:29.113", "rettet_af": "spatial_reader", "rettet_dato": "2025-07-31 10:00:13.91", "mi_style": null, "mi_prinx": 297}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573871.0393020185, 6222888.768987707]},"properties": {"vejnavn": "Max Müllers Gade", "husnnr": "13", "invalidepladser": 1, "bemrk": null, "ident": "gl", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:29.153", "rettet_af": "spatial_reader", "rettet_dato": "2020-03-17 08:09:34.883", "mi_style": null, "mi_prinx": 298}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574914.8559939226, 6222594.038979148]},"properties": {"vejnavn": "Hendrik Pontoppidans Gade", "husnnr": "34", "invalidepladser": 1, "bemrk": "5x3,5", "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:29.19", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:19.733", "mi_style": null, "mi_prinx": 299}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575638.25, 6226153.625]},"properties": {"vejnavn": "Skovvangsvej", "husnnr": "222", "invalidepladser": 1, "bemrk": "5x3,5", "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:29.26", "rettet_af": "spatial_reader", "rettet_dato": "2020-03-23 06:56:12.1", "mi_style": null, "mi_prinx": 301}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574462.8600388346, 6226572.059264624]},"properties": {"vejnavn": "Stockholmsgade", "husnnr": "1", "invalidepladser": 1, "bemrk": "5x2,5", "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:29.293", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:19.97", "mi_style": null, "mi_prinx": 302}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574497.212226172, 6224409.829380264]},"properties": {"vejnavn": "Teglværksgade", "husnnr": "3", "invalidepladser": 1, "bemrk": "Til højre for porten", "ident": "1124", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:29.38", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:20.12", "mi_style": null, "mi_prinx": 304}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575140.6024732155, 6224850.239736008]},"properties": {"vejnavn": "Høegh Guldbergs Gade", "husnnr": "45", "invalidepladser": 1, "bemrk": null, "ident": "1130", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:29.423", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:20.197", "mi_style": null, "mi_prinx": 305}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574098.9791758942, 6222367.355119992]},"properties": {"vejnavn": "P. P. Ørumsgade", "husnnr": "6", "invalidepladser": 1, "bemrk": null, "ident": "1127", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:29.467", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:20.267", "mi_style": null, "mi_prinx": 306}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573984.3949235562, 6222175.364199189]},"properties": {"vejnavn": "Ellemarksvej", "husnnr": null, "invalidepladser": 1, "bemrk": null, "ident": "1129", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:29.507", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:20.337", "mi_style": null, "mi_prinx": 307}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574502.2421911926, 6222857.645322839]},"properties": {"vejnavn": "Ingerslev Torv", "husnnr": "9", "invalidepladser": 1, "bemrk": null, "ident": "1133", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:29.543", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-10 10:03:19.153", "mi_style": null, "mi_prinx": 308}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574505.5487747552, 6222858.265196665]},"properties": {"vejnavn": "Ingerslev Torv", "husnnr": "9", "invalidepladser": 1, "bemrk": null, "ident": "1133", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:29.57", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-10 10:03:07.203", "mi_style": null, "mi_prinx": 309}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574509.0697502696, 6222858.8850704925]},"properties": {"vejnavn": "Ingerslev Torv", "husnnr": "9", "invalidepladser": 1, "bemrk": null, "ident": "1133", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:29.6", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-10 10:02:53.353", "mi_style": null, "mi_prinx": 310}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574737.586833246, 6222612.475226503]},"properties": {"vejnavn": "Assensgade", "husnnr": "19", "invalidepladser": 1, "bemrk": null, "ident": "1121", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:29.633", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:20.67", "mi_style": null, "mi_prinx": 311}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574719.5036967049, 6222608.076121928]},"properties": {"vejnavn": "Assensgade", "husnnr": "21", "invalidepladser": 2, "bemrk": null, "ident": "1128", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:29.677", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:20.737", "mi_style": null, "mi_prinx": 312}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [576416.2510775031, 6232254.552609537]},"properties": {"vejnavn": "Lystruplund", "husnnr": null, "invalidepladser": 1, "bemrk": "Ud for børnehavens indgang", "ident": "1123", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:29.717", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:20.81", "mi_style": null, "mi_prinx": 313}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573121.6899557706, 6220138.458805391]},"properties": {"vejnavn": "Rundhøj Alle", "husnnr": "61", "invalidepladser": 1, "bemrk": null, "ident": "1133", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:29.753", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:20.883", "mi_style": null, "mi_prinx": 314}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [576412.5899226356, 6232262.860918405]},"properties": {"vejnavn": "Lystruplund", "husnnr": null, "invalidepladser": 1, "bemrk": "Ud for børnehavens indgang", "ident": "1123", "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:29.783", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:20.953", "mi_style": null, "mi_prinx": 315}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575079.1956707429, 6224575.955565759]},"properties": {"vejnavn": "Borggade", "husnnr": "16", "invalidepladser": 1, "bemrk": "Efter henvenddelse fra Pia Møller", "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:29.86", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:21.13", "mi_style": null, "mi_prinx": 317}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574136.9018138117, 6222534.351128438]},"properties": {"vejnavn": "Chr. Wærumsgade", "husnnr": "29", "invalidepladser": 1, "bemrk": "Efter henvenddelse fra Pia Møller", "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:29.943", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:21.277", "mi_style": null, "mi_prinx": 319}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573894.8368086569, 6224475.935924468]},"properties": {"vejnavn": "Eugen Warmingsvej", "husnnr": "6", "invalidepladser": 2, "bemrk": "Efter henvenddelse fra Pia Møller", "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:30.007", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:21.347", "mi_style": null, "mi_prinx": 320}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [576295.1526081712, 6228305.306467168]},"properties": {"vejnavn": "Fortebakken", "husnnr": "34A", "invalidepladser": 1, "bemrk": "Efter henvenddelse fra Pia Møller", "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:30.047", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:21.417", "mi_style": null, "mi_prinx": 321}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575393.7251555714, 6223907.781570643]},"properties": {"vejnavn": "Hack Kampmanns plads", "husnnr": "2", "invalidepladser": 3, "bemrk": "Efter henvenddelse fra Pia Møller", "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:30.09", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:21.487", "mi_style": null, "mi_prinx": 322}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574911.6071312699, 6222880.060760242]},"properties": {"vejnavn": "Hendrik Pontopidans gade", "husnnr": "2", "invalidepladser": 1, "bemrk": "Efter henvenddelse fra Pia Møller", "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:30.123", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:21.56", "mi_style": null, "mi_prinx": 323}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575107.1408370622, 6226017.862069859]},"properties": {"vejnavn": "Herambsgade", "husnnr": "5", "invalidepladser": 1, "bemrk": "Efter henvenddelse fra Pia Møller", "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:30.16", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:21.6", "mi_style": null, "mi_prinx": 324}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575153.6061696704, 6211381.751207897]},"properties": {"vejnavn": "Mallingsgårdsvej", "husnnr": "137", "invalidepladser": 1, "bemrk": "Efter henvenddelse fra Pia Møller", "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:30.19", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:21.65", "mi_style": null, "mi_prinx": 325}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573888.9575216738, 6222869.90282786]},"properties": {"vejnavn": "Max Mullers Gade", "husnnr": "9", "invalidepladser": 1, "bemrk": "Efter henvenddelse fra Pia Møller", "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:30.227", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:21.71", "mi_style": null, "mi_prinx": 326}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574546.3132659666, 6223169.7029371355]},"properties": {"vejnavn": "Montaangade", "husnnr": "8", "invalidepladser": 1, "bemrk": "Efter henvenddelse fra Pia Møller", "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:30.263", "rettet_af": "spatial_reader", "rettet_dato": "2025-07-24 12:58:27.443", "mi_style": null, "mi_prinx": 327}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573574.4692660668, 6222862.3343683975]},"properties": {"vejnavn": "Nordborg Gade", "husnnr": "41", "invalidepladser": 1, "bemrk": "Efter henvenddelse fra Pia Møller", "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:30.3", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:21.947", "mi_style": null, "mi_prinx": 328}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574323.8351040032, 6223091.617698438]},"properties": {"vejnavn": "Ole Rømers Gade", "husnnr": "38", "invalidepladser": 1, "bemrk": "Efter henvenddelse fra Pia Møller", "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:30.333", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:22.02", "mi_style": null, "mi_prinx": 329}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574564.1684818559, 6223099.706052078]},"properties": {"vejnavn": "Ole Rømers Gade", "husnnr": "63", "invalidepladser": 1, "bemrk": "Efter henvenddelse fra Pia Møller", "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:30.373", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:22.09", "mi_style": null, "mi_prinx": 330}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573623.1032557249, 6222316.575456046]},"properties": {"vejnavn": "Rudolp Wulffs Gade", "husnnr": "9", "invalidepladser": 1, "bemrk": "Efter henvenddelse fra Pia Møller", "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:30.473", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:22.17", "mi_style": null, "mi_prinx": 331}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [572704.5079553006, 6226851.832317628]},"properties": {"vejnavn": "Sandkåsvej", "husnnr": "27", "invalidepladser": 1, "bemrk": "Efter henvenddelse fra Pia Møller", "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:30.51", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:22.22", "mi_style": null, "mi_prinx": 332}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574883.422835466, 6227413.9079087665]},"properties": {"vejnavn": "Solhvervsvej", "husnnr": "22", "invalidepladser": 1, "bemrk": "Efter henvenddelse fra Pia Møller", "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:30.547", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:22.29", "mi_style": null, "mi_prinx": 333}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574839.5219604338, 6224676.74505035]},"properties": {"vejnavn": "Thunøgade", "husnnr": "21", "invalidepladser": 1, "bemrk": "Efter henvenddelse fra Pia Møller", "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:30.59", "rettet_af": "spatial_reader", "rettet_dato": "2020-03-17 08:26:13.553", "mi_style": null, "mi_prinx": 334}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574010.542495819, 6222959.064679222]},"properties": {"vejnavn": "Trepkasgade", "husnnr": "6", "invalidepladser": 1, "bemrk": "Efter henvenddelse fra Pia Møller", "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:30.64", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:22.437", "mi_style": null, "mi_prinx": 335}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573839.0454261499, 6225405.03680867]},"properties": {"vejnavn": "Jens Baggesens Vej", "husnnr": "78", "invalidepladser": 1, "bemrk": "Efter henvenddelse fra Pia Møller", "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:30.68", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:22.533", "mi_style": null, "mi_prinx": 336}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574665.6000000001, 6227253.1000000015]},"properties": {"vejnavn": "Vorregårds Allé", "husnnr": "95", "invalidepladser": 1, "bemrk": "Efter henvenddelse fra Pia Møller", "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:30.717", "rettet_af": "spatial_reader", "rettet_dato": "2020-03-17 10:50:45.603", "mi_style": null, "mi_prinx": 337}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574079.8900463488, 6222655.326504249]},"properties": {"vejnavn": "Ålborgade", "husnnr": "30", "invalidepladser": 1, "bemrk": "Efter henvenddelse fra Pia Møller", "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:30.753", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:22.66", "mi_style": null, "mi_prinx": 338}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575257.8748707939, 6225740.82845925]},"properties": {"vejnavn": "Niels Juels Gade", "husnnr": "86", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:30.79", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:22.73", "mi_style": "Symbol (34, 16720127, 14)", "mi_prinx": 339}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575579.6936819801, 6225552.636765125]},"properties": {"vejnavn": "Trøjborgvej", "husnnr": null, "invalidepladser": 1, "bemrk": "Ud for Kochs Skole", "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:30.86", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:22.893", "mi_style": "Symbol (34, 16720127, 14)", "mi_prinx": 341}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575354.5079200993, 6225296.238954158]},"properties": {"vejnavn": "Kirkegårdsvej", "husnnr": "53", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:30.9", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:22.95", "mi_style": "Symbol (34, 16720127, 14)", "mi_prinx": 342}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575673.3747190277, 6225441.769331871]},"properties": {"vejnavn": "Skovvejen", "husnnr": "44B", "invalidepladser": 2, "bemrk": null, "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:30.953", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:23.047", "mi_style": "Symbol (34, 16720127, 14)", "mi_prinx": 343}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575589.1104361663, 6225071.994598448]},"properties": {"vejnavn": "Skovvejen", "husnnr": "19B", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:31.007", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:23.12", "mi_style": "Symbol (34, 16720127, 14)", "mi_prinx": 344}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575246.1905094264, 6225228.322778299]},"properties": {"vejnavn": "Peter Sabroes Gade", "husnnr": "2-4", "invalidepladser": 10, "bemrk": null, "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:31.04", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:23.21", "mi_style": "Symbol (34, 16720127, 14)", "mi_prinx": 345}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575188.106782205, 6225234.641492143]},"properties": {"vejnavn": "Hospitalsgaden", "husnnr": null, "invalidepladser": 3, "bemrk": null, "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:31.08", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:23.3", "mi_style": "Symbol (34, 16720127, 14)", "mi_prinx": 346}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575106.3244984768, 6225400.537724445]},"properties": {"vejnavn": "Hospitalsgaden", "husnnr": null, "invalidepladser": 4, "bemrk": null, "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:31.117", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:23.37", "mi_style": "Symbol (34, 16720127, 14)", "mi_prinx": 347}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575064.3119217885, 6225293.259560605]},"properties": {"vejnavn": "Hospitalsgaden", "husnnr": null, "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:31.16", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:23.437", "mi_style": "Symbol (34, 16720127, 14)", "mi_prinx": 348}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575109.6475737281, 6225313.485443685]},"properties": {"vejnavn": "Hospitalsgaden", "husnnr": null, "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:31.193", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:23.503", "mi_style": "Symbol (34, 16720127, 14)", "mi_prinx": 349}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575068.0720267874, 6225440.379614743]},"properties": {"vejnavn": "Hospitalsgaden", "husnnr": null, "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:31.223", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:23.567", "mi_style": "Symbol (34, 16720127, 14)", "mi_prinx": 350}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575014.441055486, 6225637.589473247]},"properties": {"vejnavn": "Hospitalsgaden", "husnnr": null, "invalidepladser": 5, "bemrk": null, "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:31.273", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:23.637", "mi_style": "Symbol (34, 16720127, 14)", "mi_prinx": 351}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574422.6368103585, 6225613.944286156]},"properties": {"vejnavn": "Victor Albecks Vej", "husnnr": "1", "invalidepladser": 2, "bemrk": null, "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:31.303", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:23.71", "mi_style": "Symbol (34, 16720127, 14)", "mi_prinx": 352}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574900.5989291347, 6225286.400956654]},"properties": {"vejnavn": "Vennelyst Boulevard", "husnnr": "4", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:31.34", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:23.78", "mi_style": "Symbol (34, 16720127, 14)", "mi_prinx": 353}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574878.0960200508, 6225366.764598867]},"properties": {"vejnavn": "Bartholins Allé", "husnnr": null, "invalidepladser": 1, "bemrk": "V/Bartholinbygningen", "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:31.373", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:23.847", "mi_style": "Symbol (34, 16720127, 14)", "mi_prinx": 354}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574170.8004797128, 6225423.143123182]},"properties": {"vejnavn": "Gustav Wieds Vej", "husnnr": "14", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:31.41", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:23.913", "mi_style": "Symbol (34, 16720127, 14)", "mi_prinx": 355}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575117.8851721799, 6224865.706587776]},"properties": {"vejnavn": "Høegh-Guldbergs Gade", "husnnr": "49", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:31.473", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:24.033", "mi_style": "Symbol (34, 16720127, 14)", "mi_prinx": 357}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574990.5281070274, 6224945.140419249]},"properties": {"vejnavn": "Høegh-Guldbergs Gade", "husnnr": "6A", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:31.51", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:24.103", "mi_style": "Symbol (34, 16720127, 14)", "mi_prinx": 358}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574350.6093604325, 6224544.851896821]},"properties": {"vejnavn": "Langelandsgade", "husnnr": "41", "invalidepladser": 2, "bemrk": null, "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:31.597", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:24.153", "mi_style": "Symbol (34, 16720127, 14)", "mi_prinx": 359}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574519.1874012209, 6224508.419312567]},"properties": {"vejnavn": "Teglværksgade", "husnnr": "17", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:31.63", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:24.28", "mi_style": "Symbol (34, 16720127, 14)", "mi_prinx": 360}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574525.4130136644, 6224532.194473202]},"properties": {"vejnavn": "Teglværksgade", "husnnr": "19", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:31.667", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:24.357", "mi_style": "Symbol (34, 16720127, 14)", "mi_prinx": 361}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573850.8204918046, 6224325.876468635]},"properties": {"vejnavn": "Ringkøbingvej", "husnnr": "25", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:31.757", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:24.57", "mi_style": "Symbol (34, 16720127, 14)", "mi_prinx": 364}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573842.8467603703, 6224172.757635531]},"properties": {"vejnavn": "Ringkøbingvej", "husnnr": "1", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:31.787", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:24.62", "mi_style": "Symbol (34, 16720127, 14)", "mi_prinx": 365}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573685.0130546996, 6224142.763740702]},"properties": {"vejnavn": "Regenburgs Plads", "husnnr": "1", "invalidepladser": 2, "bemrk": null, "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:31.817", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:24.683", "mi_style": "Symbol (34, 16720127, 14)", "mi_prinx": 366}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573708.2663356145, 6223856.911925012]},"properties": {"vejnavn": "Åparken", "husnnr": "4", "invalidepladser": 2, "bemrk": null, "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:31.847", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:24.737", "mi_style": "Symbol (34, 16720127, 14)", "mi_prinx": 367}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573789.7847523252, 6223920.838912859]},"properties": {"vejnavn": "Åparken", "husnnr": "3", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:31.88", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:24.803", "mi_style": "Symbol (34, 16720127, 14)", "mi_prinx": 368}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574850.3899832161, 6222925.211569925]},"properties": {"vejnavn": "Odensegade", "husnnr": "6", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:31.923", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:24.9", "mi_style": "Symbol (34, 16720127, 14)", "mi_prinx": 369}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574954.056737706, 6223018.042674422]},"properties": {"vejnavn": "Marselisborg Allé", "husnnr": "18", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:31.953", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:24.97", "mi_style": "Symbol (34, 16720127, 14)", "mi_prinx": 370}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574731.5426293771, 6223104.335109847]},"properties": {"vejnavn": "Sankt Pauls Gade", "husnnr": "4", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:31.987", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:25.04", "mi_style": "Symbol (34, 16720127, 14)", "mi_prinx": 371}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574744.3401797245, 6223104.785018269]},"properties": {"vejnavn": "Sankt Pauls Gade", "husnnr": "6", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:32.027", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:25.113", "mi_style": "Symbol (34, 16720127, 14)", "mi_prinx": 372}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574725.6138673283, 6222733.070679648]},"properties": {"vejnavn": "J. Michaelsens Gade", "husnnr": "8", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:32.123", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:25.31", "mi_style": "Symbol (34, 16720127, 14)", "mi_prinx": 375}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574543.1745622781, 6223191.127443518]},"properties": {"vejnavn": "Montanagade", "husnnr": "4A", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:32.153", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:25.35", "mi_style": "Symbol (34, 16720127, 14)", "mi_prinx": 376}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574802.1600399285, 6223111.60363036]},"properties": {"vejnavn": "Brammersgade", "husnnr": "18", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:32.187", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:25.393", "mi_style": "Symbol (34, 16720127, 14)", "mi_prinx": 377}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574870.3036971911, 6223125.000903384]},"properties": {"vejnavn": "Brammersgade", "husnnr": null, "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:32.217", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:25.43", "mi_style": "Symbol (34, 16720127, 14)", "mi_prinx": 378}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574949.7603455347, 6223146.6087693]},"properties": {"vejnavn": "St. St. Blichers Gade", "husnnr": "28", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:32.257", "rettet_af": "spatial_reader", "rettet_dato": "2025-07-31 10:03:17.84", "mi_style": "Symbol (34, 16720127, 14)", "mi_prinx": 379}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574131.5007857978, 6222588.660074009]},"properties": {"vejnavn": "Chr. Wærums Gade", "husnnr": "21", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:32.293", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:25.507", "mi_style": "Symbol (34, 16720127, 14)", "mi_prinx": 380}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574200.5290566034, 6222565.141509435]},"properties": {"vejnavn": "Stadion Allé", "husnnr": "24", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:32.327", "rettet_af": "spatial_reader", "rettet_dato": "2026-03-24 13:56:15.127", "mi_style": "Symbol (34, 16720127, 14)", "mi_prinx": 381}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574191.027535771, 6222648.197955245]},"properties": {"vejnavn": "Stadion Allé", "husnnr": "14", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:32.36", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:25.58", "mi_style": "Symbol (34, 16720127, 14)", "mi_prinx": 382}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574193.9630563403, 6222718.033740373]},"properties": {"vejnavn": "Stadion Allé", "husnnr": "7", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:32.39", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:25.617", "mi_style": "Symbol (34, 16720127, 14)", "mi_prinx": 383}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575232.5353912722, 6224544.841898856]},"properties": {"vejnavn": "Studsgade", "husnnr": "38", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:32.423", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:25.673", "mi_style": "Symbol (34, 16720127, 14)", "mi_prinx": 384}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574716.4527343153, 6224380.4153674]},"properties": {"vejnavn": "Klostergade", "husnnr": "78", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:32.457", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:25.71", "mi_style": "Symbol (34, 16720127, 14)", "mi_prinx": 385}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574748.306430831, 6224145.5731688505]},"properties": {"vejnavn": "Grønnegade", "husnnr": "4", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:32.497", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:25.747", "mi_style": "Symbol (34, 16720127, 14)", "mi_prinx": 386}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574797.3197293266, 6224474.496217515]},"properties": {"vejnavn": "Gammel Munkegade", "husnnr": "6", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:32.863", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:25.827", "mi_style": "Symbol (34, 16720127, 14)", "mi_prinx": 388}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574841.4597338435, 6224276.456527921]},"properties": {"vejnavn": "Vestergade", "husnnr": "11", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:32.897", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:25.863", "mi_style": "Symbol (34, 16720127, 14)", "mi_prinx": 389}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575014.8203643236, 6224302.431240844]},"properties": {"vejnavn": "Badstuegade", "husnnr": "1", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:32.927", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:25.9", "mi_style": "Symbol (34, 16720127, 14)", "mi_prinx": 390}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574934.1924987969, 6223330.958981213]},"properties": {"vejnavn": "M.P. Bruuns Gade", "husnnr": "25", "invalidepladser": 2, "bemrk": null, "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:32.957", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:25.933", "mi_style": "Symbol (34, 16720127, 14)", "mi_prinx": 391}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574915.3095153589, 6223254.954451715]},"properties": {"vejnavn": "Jægergårdsgade", "husnnr": "124", "invalidepladser": 1, "bemrk": "8-16", "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:32.997", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:25.97", "mi_style": "Symbol (34, 16720127, 14)", "mi_prinx": 392}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574915.6393491307, 6223263.812648655]},"properties": {"vejnavn": "Jægergårdsgade", "husnnr": "97", "invalidepladser": 1, "bemrk": "8-16", "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:33.043", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:26.007", "mi_style": "Symbol (34, 16720127, 14)", "mi_prinx": 393}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574488.7107607027, 6223237.937915382]},"properties": {"vejnavn": "Istedgade", "husnnr": "14", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:33.077", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:26.043", "mi_style": "Symbol (34, 16720127, 14)", "mi_prinx": 394}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574767.2962480201, 6223464.91676953]},"properties": {"vejnavn": "Banegårdspladsen", "husnnr": "1", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:33.19", "rettet_af": "spatial_reader", "rettet_dato": "2025-07-31 09:52:54.773", "mi_style": "Symbol (34, 16720127, 14)", "mi_prinx": 396}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574530.2173944163, 6223395.66940094]},"properties": {"vejnavn": "Kriegersvej", "husnnr": "11", "invalidepladser": 2, "bemrk": null, "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:33.22", "rettet_af": "spatial_reader", "rettet_dato": "2025-07-31 10:04:44.057", "mi_style": "Symbol (34, 16720127, 14)", "mi_prinx": 397}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574906.5854120937, 6223675.0989325205]},"properties": {"vejnavn": "Rosenkrantzgade", "husnnr": "24", "invalidepladser": 2, "bemrk": null, "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:33.257", "rettet_af": "spatial_reader", "rettet_dato": "2025-12-02 14:37:07.49", "mi_style": "Symbol (34, 16720127, 14)", "mi_prinx": 398}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575020.6317082599, 6224083.022794313]},"properties": {"vejnavn": "Fiskergade", "husnnr": "2", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:33.287", "rettet_af": "spatial_reader", "rettet_dato": "2025-07-31 09:55:01.553", "mi_style": "Symbol (34, 16720127, 14)", "mi_prinx": 399}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574872.5218293066, 6223967.619390828]},"properties": {"vejnavn": "Telefonsmøgen", "husnnr": null, "invalidepladser": 3, "bemrk": null, "ident": null, "oprettet_af": "ADM\\aztnbnd", "oprettet_dato": "2019-03-19 14:51:33.327", "rettet_af": "ADM\\aztnbnd", "rettet_dato": "2019-03-19 14:52:26.6", "mi_style": "Symbol (34, 16720127, 14)", "mi_prinx": 400}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574997.9, 6222462.25]},"properties": {"vejnavn": "Adolph Meyers Vej", "husnnr": null, "invalidepladser": 1, "bemrk": "Ud mod Strandvejen", "ident": "1196", "oprettet_af": "spatial_reader", "oprettet_dato": "2020-03-16 11:55:35.953", "rettet_af": "spatial_reader", "rettet_dato": "2020-03-16 12:00:59.113", "mi_style": null, "mi_prinx": 404}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573880.2000000001, 6222878.7]},"properties": {"vejnavn": "Max Müllers Gade 11", "husnnr": "11", "invalidepladser": 1, "bemrk": null, "ident": "1169", "oprettet_af": "spatial_reader", "oprettet_dato": "2020-03-17 08:08:44.613", "rettet_af": "spatial_reader", "rettet_dato": "2020-03-17 08:08:44.613", "mi_style": null, "mi_prinx": 405}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573875.6000000001, 6222883.899999999]},"properties": {"vejnavn": "Max Müllers Gade", "husnnr": "13", "invalidepladser": 1, "bemrk": null, "ident": "1169", "oprettet_af": "spatial_reader", "oprettet_dato": "2020-03-17 08:11:20.153", "rettet_af": "spatial_reader", "rettet_dato": "2020-03-17 08:11:20.153", "mi_style": null, "mi_prinx": 406}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574233.0, 6226255.500000001]},"properties": {"vejnavn": "Brendstrupvej", "husnnr": "51", "invalidepladser": 1, "bemrk": null, "ident": "1171", "oprettet_af": "spatial_reader", "oprettet_dato": "2020-03-17 08:14:12.3", "rettet_af": "spatial_reader", "rettet_dato": "2020-03-17 08:14:12.3", "mi_style": null, "mi_prinx": 407}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573849.4, 6222996.65]},"properties": {"vejnavn": "Læssøegade", "husnnr": "24", "invalidepladser": 1, "bemrk": null, "ident": "1173", "oprettet_af": "spatial_reader", "oprettet_dato": "2020-03-17 08:18:31.19", "rettet_af": "spatial_reader", "rettet_dato": "2020-03-17 08:18:31.19", "mi_style": null, "mi_prinx": 408}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574396.7, 6224597.35]},"properties": {"vejnavn": "Skt. Marcus Kirkeplads", "husnnr": "6", "invalidepladser": 1, "bemrk": null, "ident": "1173", "oprettet_af": "spatial_reader", "oprettet_dato": "2020-03-17 08:21:54.81", "rettet_af": "spatial_reader", "rettet_dato": "2020-03-17 08:21:54.81", "mi_style": null, "mi_prinx": 409}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574845.2999999999, 6224678.449999999]},"properties": {"vejnavn": "Thunøgade 26B", "husnnr": "26B", "invalidepladser": 1, "bemrk": null, "ident": "1176", "oprettet_af": "spatial_reader", "oprettet_dato": "2020-03-17 08:25:55.553", "rettet_af": "spatial_reader", "rettet_dato": "2020-03-17 08:25:55.553", "mi_style": null, "mi_prinx": 410}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573925.4, 6222166.899999999]},"properties": {"vejnavn": "Ellemarksvej", "husnnr": "31", "invalidepladser": 1, "bemrk": null, "ident": "1181", "oprettet_af": "spatial_reader", "oprettet_dato": "2020-03-17 08:31:40.443", "rettet_af": "spatial_reader", "rettet_dato": "2020-03-17 08:31:40.443", "mi_style": null, "mi_prinx": 412}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [571908.4, 6223314.500000001]},"properties": {"vejnavn": "Henrik Hertz Vej", "husnnr": "54", "invalidepladser": 1, "bemrk": null, "ident": "1182", "oprettet_af": "spatial_reader", "oprettet_dato": "2020-03-17 08:34:51.437", "rettet_af": "spatial_reader", "rettet_dato": "2020-03-17 08:34:51.437", "mi_style": null, "mi_prinx": 413}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574719.1, 6223555.250000001]},"properties": {"vejnavn": "Johannes Bjergs Gade", "husnnr": "", "invalidepladser": 1, "bemrk": "På hjørnet ved Banegårdspladsen 14", "ident": "1185", "oprettet_af": "spatial_reader", "oprettet_dato": "2020-03-17 08:48:20.697", "rettet_af": "spatial_reader", "rettet_dato": "2020-03-17 08:48:20.697", "mi_style": null, "mi_prinx": 416}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575397.9500000001, 6225939.025]},"properties": {"vejnavn": "Ivar Huitfeldts Gade", "husnnr": "64A", "invalidepladser": 1, "bemrk": null, "ident": "1185", "oprettet_af": "spatial_reader", "oprettet_dato": "2020-03-17 08:51:46.78", "rettet_af": "spatial_reader", "rettet_dato": "2020-03-17 08:51:46.78", "mi_style": null, "mi_prinx": 417}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574223.2, 6222506.7]},"properties": {"vejnavn": "Stadion Allé", "husnnr": "29", "invalidepladser": 1, "bemrk": null, "ident": "1186", "oprettet_af": "spatial_reader", "oprettet_dato": "2020-03-17 08:54:59.317", "rettet_af": "spatial_reader", "rettet_dato": "2020-03-17 08:54:59.317", "mi_style": null, "mi_prinx": 418}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [576141.0, 6225269.5]},"properties": {"vejnavn": "Esther Aggebos Gade", "husnnr": "7", "invalidepladser": 1, "bemrk": null, "ident": "1186", "oprettet_af": "spatial_reader", "oprettet_dato": "2020-03-17 08:59:53.823", "rettet_af": "spatial_reader", "rettet_dato": "2020-03-17 08:59:53.823", "mi_style": null, "mi_prinx": 419}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [576136.6, 6225275.9]},"properties": {"vejnavn": "Esther Aggebos Gade", "husnnr": "7", "invalidepladser": 1, "bemrk": null, "ident": "1186", "oprettet_af": "spatial_reader", "oprettet_dato": "2020-03-17 09:00:00.397", "rettet_af": "spatial_reader", "rettet_dato": "2020-03-17 09:00:00.397", "mi_style": null, "mi_prinx": 420}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [576132.525, 6225282.1125]},"properties": {"vejnavn": "Esther Aggebos Gade", "husnnr": "7", "invalidepladser": 1, "bemrk": null, "ident": "1186", "oprettet_af": "spatial_reader", "oprettet_dato": "2020-03-17 09:00:19.683", "rettet_af": "spatial_reader", "rettet_dato": "2020-03-17 09:01:17.037", "mi_style": null, "mi_prinx": 421}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574134.4, 6222663.3500000015]},"properties": {"vejnavn": "Ålborggade", "husnnr": "16", "invalidepladser": 1, "bemrk": "på NV hjørnet ved Chr. Wærums Gade", "ident": "1187", "oprettet_af": "spatial_reader", "oprettet_dato": "2020-03-17 09:08:44.067", "rettet_af": "spatial_reader", "rettet_dato": "2020-03-17 09:08:44.067", "mi_style": null, "mi_prinx": 422}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573822.0, 6222563.450000001]},"properties": {"vejnavn": "P. P. Ørums Gade", "husnnr": "40", "invalidepladser": 1, "bemrk": null, "ident": "1187", "oprettet_af": "spatial_reader", "oprettet_dato": "2020-03-17 09:12:21.367", "rettet_af": "spatial_reader", "rettet_dato": "2020-03-17 09:12:21.367", "mi_style": null, "mi_prinx": 423}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [570801.2, 6216735.900000001]},"properties": {"vejnavn": "Kirketorvet", "husnnr": "14", "invalidepladser": 1, "bemrk": null, "ident": "1190", "oprettet_af": "spatial_reader", "oprettet_dato": "2020-03-17 09:14:51.303", "rettet_af": "spatial_reader", "rettet_dato": "2020-03-17 09:14:51.303", "mi_style": null, "mi_prinx": 424}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [570806.0, 6216734.500000001]},"properties": {"vejnavn": "Kirketorvet", "husnnr": "14", "invalidepladser": 1, "bemrk": null, "ident": "1190", "oprettet_af": "spatial_reader", "oprettet_dato": "2020-03-17 09:15:00.997", "rettet_af": "spatial_reader", "rettet_dato": "2020-03-17 09:15:00.997", "mi_style": null, "mi_prinx": 425}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574101.2, 6223033.899999999]},"properties": {"vejnavn": "Schleppegrellsgade", "husnnr": "2", "invalidepladser": 1, "bemrk": null, "ident": "1191", "oprettet_af": "spatial_reader", "oprettet_dato": "2020-03-17 09:19:45.767", "rettet_af": "spatial_reader", "rettet_dato": "2020-03-17 09:19:45.767", "mi_style": null, "mi_prinx": 426}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574902.6, 6222755.500000001]},"properties": {"vejnavn": "Hendrik Pontoppidans Gade", "husnnr": "18", "invalidepladser": 1, "bemrk": null, "ident": "1191", "oprettet_af": "spatial_reader", "oprettet_dato": "2020-03-17 09:22:33.383", "rettet_af": "spatial_reader", "rettet_dato": "2020-03-17 09:22:33.383", "mi_style": null, "mi_prinx": 427}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573502.0, 6224196.900000001]},"properties": {"vejnavn": "Regensburgsgade", "husnnr": "12", "invalidepladser": 1, "bemrk": null, "ident": "1191", "oprettet_af": "spatial_reader", "oprettet_dato": "2020-03-17 09:24:22.523", "rettet_af": "spatial_reader", "rettet_dato": "2020-03-17 09:25:10.057", "mi_style": null, "mi_prinx": 428}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574308.35, 6223515.425000001]},"properties": {"vejnavn": "Christen Købkes Gade", "husnnr": "6", "invalidepladser": 1, "bemrk": null, "ident": "1193", "oprettet_af": "spatial_reader", "oprettet_dato": "2020-03-17 09:27:59.887", "rettet_af": "spatial_reader", "rettet_dato": "2020-03-17 09:27:59.887", "mi_style": null, "mi_prinx": 430}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575200.2, 6224522.150000001]},"properties": {"vejnavn": "Studsgade", "husnnr": "22", "invalidepladser": 1, "bemrk": null, "ident": "1193", "oprettet_af": "spatial_reader", "oprettet_dato": "2020-03-17 09:29:06.1", "rettet_af": "spatial_reader", "rettet_dato": "2020-03-17 09:29:06.1", "mi_style": null, "mi_prinx": 431}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574790.4, 6222623.850000001]},"properties": {"vejnavn": "Assensgade", "husnnr": "13", "invalidepladser": 1, "bemrk": null, "ident": "1193", "oprettet_af": "spatial_reader", "oprettet_dato": "2020-03-17 09:31:34.91", "rettet_af": "spatial_reader", "rettet_dato": "2020-03-17 09:31:34.91", "mi_style": null, "mi_prinx": 432}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575263.2000000001, 6228819.3]},"properties": {"vejnavn": "Tværmarksvej", "husnnr": "91", "invalidepladser": 1, "bemrk": null, "ident": "1200", "oprettet_af": "spatial_reader", "oprettet_dato": "2020-03-17 09:36:06.61", "rettet_af": "spatial_reader", "rettet_dato": "2020-03-17 09:36:06.61", "mi_style": null, "mi_prinx": 433}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574008.1, 6225215.550000001]},"properties": {"vejnavn": "Chr. Molbechs Vej", "husnnr": "7", "invalidepladser": 1, "bemrk": null, "ident": "1202", "oprettet_af": "spatial_reader", "oprettet_dato": "2020-03-17 09:42:59.763", "rettet_af": "spatial_reader", "rettet_dato": "2020-03-17 09:42:59.763", "mi_style": null, "mi_prinx": 434}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575616.4500000001, 6226158.575000001]},"properties": {"vejnavn": "Skovvangsvej", "husnnr": "218", "invalidepladser": 1, "bemrk": "", "ident": "1203", "oprettet_af": "spatial_reader", "oprettet_dato": "2020-03-17 10:22:30.467", "rettet_af": "spatial_reader", "rettet_dato": "2020-03-17 10:22:30.467", "mi_style": null, "mi_prinx": 435}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574331.2000000001, 6227559.55]},"properties": {"vejnavn": "Vorregårds Allé", "husnnr": "125", "invalidepladser": 1, "bemrk": null, "ident": "1205", "oprettet_af": "spatial_reader", "oprettet_dato": "2020-03-17 10:27:08.61", "rettet_af": "spatial_reader", "rettet_dato": "2020-03-17 10:27:08.61", "mi_style": null, "mi_prinx": 436}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574076.6, 6222877.450000001]},"properties": {"vejnavn": "Vejlegade", "husnnr": "4", "invalidepladser": 1, "bemrk": null, "ident": "1207", "oprettet_af": "spatial_reader", "oprettet_dato": "2020-03-17 10:35:54.443", "rettet_af": "spatial_reader", "rettet_dato": "2020-03-17 10:35:54.443", "mi_style": null, "mi_prinx": 437}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574813.4, 6227367.300000002]},"properties": {"vejnavn": "Solhvervsvej", "husnnr": "16", "invalidepladser": 1, "bemrk": null, "ident": "1208", "oprettet_af": "spatial_reader", "oprettet_dato": "2020-03-17 10:36:25.903", "rettet_af": "spatial_reader", "rettet_dato": "2020-03-23 06:58:57.687", "mi_style": null, "mi_prinx": 438}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573701.05, 6225537.125000001]},"properties": {"vejnavn": "Vilhelm Bergsøes Vej", "husnnr": "37", "invalidepladser": 1, "bemrk": null, "ident": "1208", "oprettet_af": "spatial_reader", "oprettet_dato": "2020-03-17 10:39:11.127", "rettet_af": "spatial_reader", "rettet_dato": "2020-03-17 10:39:11.127", "mi_style": null, "mi_prinx": 439}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [570415.7999999999, 6224631.05]},"properties": {"vejnavn": "Karen Blixens Boulevard", "husnnr": "7", "invalidepladser": 1, "bemrk": null, "ident": "1208", "oprettet_af": "spatial_reader", "oprettet_dato": "2020-03-17 10:42:06.563", "rettet_af": "spatial_reader", "rettet_dato": "2020-03-17 10:42:06.563", "mi_style": null, "mi_prinx": 440}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573264.6000000001, 6225891.1000000015]},"properties": {"vejnavn": "Majdalen", "husnnr": "9", "invalidepladser": 1, "bemrk": null, "ident": "1209", "oprettet_af": "spatial_reader", "oprettet_dato": "2020-03-17 10:46:08.143", "rettet_af": "spatial_reader", "rettet_dato": "2020-03-23 07:00:59.987", "mi_style": null, "mi_prinx": 441}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575311.4, 6225676.650000001]},"properties": {"vejnavn": "Willemoesgade", "husnnr": "5", "invalidepladser": 1, "bemrk": null, "ident": "1213", "oprettet_af": "spatial_reader", "oprettet_dato": "2020-03-17 10:52:54.42", "rettet_af": "spatial_reader", "rettet_dato": "2020-03-17 10:52:54.42", "mi_style": null, "mi_prinx": 442}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575013.2, 6224297.75]},"properties": {"vejnavn": "Badstuegade", "husnnr": "1B", "invalidepladser": 1, "bemrk": null, "ident": "1213", "oprettet_af": "spatial_reader", "oprettet_dato": "2020-03-17 11:06:29.84", "rettet_af": "spatial_reader", "rettet_dato": "2020-03-17 11:06:29.84", "mi_style": null, "mi_prinx": 443}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574438.2, 6224426.775000001]},"properties": {"vejnavn": "Langelandsgade", "husnnr": "8", "invalidepladser": 1, "bemrk": null, "ident": "1216", "oprettet_af": "spatial_reader", "oprettet_dato": "2020-03-17 11:12:55.713", "rettet_af": "spatial_reader", "rettet_dato": "2020-03-17 11:12:55.713", "mi_style": null, "mi_prinx": 444}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574116.1, 6222681.774999999]},"properties": {"vejnavn": "Chr. Wærums Gade", "husnnr": "11A", "invalidepladser": 1, "bemrk": null, "ident": "1217", "oprettet_af": "spatial_reader", "oprettet_dato": "2020-03-17 11:15:24.13", "rettet_af": "spatial_reader", "rettet_dato": "2020-03-17 11:15:24.13", "mi_style": null, "mi_prinx": 445}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575674.7999999999, 6225450.7]},"properties": {"vejnavn": "Skovvejen", "husnnr": "44B", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2020-03-17 11:25:59.593", "rettet_af": "spatial_reader", "rettet_dato": "2020-03-17 11:26:38.423", "mi_style": "Symbol (34, 16720127, 14)", "mi_prinx": 446}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575677.0, 6225459.9]},"properties": {"vejnavn": "Skovvejen", "husnnr": "44A", "invalidepladser": 1, "bemrk": null, "ident": "1217", "oprettet_af": "spatial_reader", "oprettet_dato": "2020-03-17 11:27:24.777", "rettet_af": "spatial_reader", "rettet_dato": "2020-03-17 11:27:24.777", "mi_style": "Symbol (34, 16720127, 14)", "mi_prinx": 447}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575345.5377970586, 6224349.986968176]},"properties": {"vejnavn": "Skt. Olufs Gade", "husnnr": "1", "invalidepladser": 1, "bemrk": null, "ident": "1217", "oprettet_af": "spatial_reader", "oprettet_dato": "2020-03-17 11:32:05.217", "rettet_af": "spatial_reader", "rettet_dato": "2025-07-31 09:59:53.663", "mi_style": null, "mi_prinx": 448}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575681.3, 6226046.85]},"properties": {"vejnavn": "Peder Skrams Gade", "husnnr": "15", "invalidepladser": 1, "bemrk": null, "ident": "1195+1203", "oprettet_af": "spatial_reader", "oprettet_dato": "2020-03-17 11:44:10.597", "rettet_af": "spatial_reader", "rettet_dato": "2020-03-17 11:44:10.597", "mi_style": null, "mi_prinx": 449}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575668.2000000001, 6226049.55]},"properties": {"vejnavn": "Peder Skrams Gade", "husnnr": "17", "invalidepladser": 1, "bemrk": null, "ident": "1195+1203", "oprettet_af": "spatial_reader", "oprettet_dato": "2020-03-17 11:44:22.327", "rettet_af": "spatial_reader", "rettet_dato": "2020-03-17 11:44:22.327", "mi_style": null, "mi_prinx": 450}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573564.4, 6224469.1]},"properties": {"vejnavn": "Tage-Hansens Gade", "husnnr": "29", "invalidepladser": null, "bemrk": null, "ident": "1196+1212", "oprettet_af": "spatial_reader", "oprettet_dato": "2020-03-17 11:47:52.29", "rettet_af": "spatial_reader", "rettet_dato": "2020-03-17 11:49:58.087", "mi_style": null, "mi_prinx": 451}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573564.6000000001, 6224461.9]},"properties": {"vejnavn": "Tage-Hansens Gade", "husnnr": "29", "invalidepladser": 1, "bemrk": null, "ident": "1196+1212", "oprettet_af": "spatial_reader", "oprettet_dato": "2020-03-17 11:48:07.09", "rettet_af": "spatial_reader", "rettet_dato": "2020-03-17 11:49:44.383", "mi_style": null, "mi_prinx": 452}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573564.4, 6224492.5]},"properties": {"vejnavn": "Tage-Hansens Gade", "husnnr": "31B", "invalidepladser": 1, "bemrk": null, "ident": "1196+1212", "oprettet_af": "spatial_reader", "oprettet_dato": "2020-03-17 11:48:39.0", "rettet_af": "spatial_reader", "rettet_dato": "2020-03-17 11:48:39.0", "mi_style": null, "mi_prinx": 453}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574462.6000000001, 6222419.500000001]},"properties": {"vejnavn": "Marselis Boulevard", "husnnr": "34", "invalidepladser": 1, "bemrk": null, "ident": "1218", "oprettet_af": "spatial_reader", "oprettet_dato": "2020-03-17 11:52:06.373", "rettet_af": "spatial_reader", "rettet_dato": "2020-03-17 11:52:06.373", "mi_style": null, "mi_prinx": 454}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574468.6000000001, 6222420.700000001]},"properties": {"vejnavn": "Marselis Boulevard", "husnnr": "34", "invalidepladser": 1, "bemrk": null, "ident": "1218", "oprettet_af": "spatial_reader", "oprettet_dato": "2020-03-17 11:52:12.95", "rettet_af": "spatial_reader", "rettet_dato": "2020-03-17 11:52:12.95", "mi_style": null, "mi_prinx": 455}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574475.0000000001, 6222421.900000001]},"properties": {"vejnavn": "Marselis Boulevard", "husnnr": "34", "invalidepladser": 1, "bemrk": null, "ident": "1218", "oprettet_af": "spatial_reader", "oprettet_dato": "2020-03-17 11:52:20.613", "rettet_af": "spatial_reader", "rettet_dato": "2020-03-17 11:52:20.613", "mi_style": null, "mi_prinx": 456}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574481.8, 6222423.1000000015]},"properties": {"vejnavn": "Marselis Boulevard", "husnnr": "34", "invalidepladser": 1, "bemrk": null, "ident": "1218", "oprettet_af": "spatial_reader", "oprettet_dato": "2020-03-17 11:52:32.217", "rettet_af": "spatial_reader", "rettet_dato": "2020-03-17 11:52:32.217", "mi_style": null, "mi_prinx": 457}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [576152.8, 6225252.3]},"properties": {"vejnavn": "Esther Aggebos Gade", "husnnr": "3", "invalidepladser": 1, "bemrk": null, "ident": "1186+1172", "oprettet_af": "spatial_reader", "oprettet_dato": "2020-03-23 06:51:19.7", "rettet_af": "spatial_reader", "rettet_dato": "2020-03-23 06:51:19.7", "mi_style": null, "mi_prinx": 458}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [576138.6000000001, 6225293.1]},"properties": {"vejnavn": "Esther Aggebos Gade", "husnnr": "12", "invalidepladser": 1, "bemrk": null, "ident": "1186+1172", "oprettet_af": "spatial_reader", "oprettet_dato": "2020-03-23 06:51:52.03", "rettet_af": "spatial_reader", "rettet_dato": "2020-03-23 06:51:52.03", "mi_style": null, "mi_prinx": 459}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [576141.8, 6225288.5]},"properties": {"vejnavn": "Esther Aggebos Gade", "husnnr": "10", "invalidepladser": 1, "bemrk": null, "ident": "1186+1172", "oprettet_af": "spatial_reader", "oprettet_dato": "2020-03-23 06:52:02.153", "rettet_af": "spatial_reader", "rettet_dato": "2020-03-23 06:52:02.153", "mi_style": null, "mi_prinx": 460}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [576156.4, 6225267.7]},"properties": {"vejnavn": "Esther Aggebos Gade", "husnnr": "6", "invalidepladser": 1, "bemrk": null, "ident": "1186+1172", "oprettet_af": "spatial_reader", "oprettet_dato": "2020-03-23 06:52:20.473", "rettet_af": "spatial_reader", "rettet_dato": "2020-03-23 06:52:20.473", "mi_style": null, "mi_prinx": 461}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574173.0585387659, 6222819.027722998]},"properties": {"vejnavn": "Ingerslev Boulevard", "husnnr": null, "invalidepladser": 1, "bemrk": "1200", "ident": "1", "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-10 13:11:36.553", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-10 13:11:36.553", "mi_style": null, "mi_prinx": 464}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574717.2467898262, 6222608.072481987]},"properties": {"vejnavn": "Assensgade", "husnnr": "21", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-10 14:16:10.33", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-10 14:16:10.33", "mi_style": null, "mi_prinx": 466}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574756.4414590374, 6222616.351223999]},"properties": {"vejnavn": "Assensgade", "husnnr": "17", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-10 14:17:39.227", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-10 14:17:39.227", "mi_style": null, "mi_prinx": 467}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575071.0398722045, 6223736.640195375]},"properties": {"vejnavn": "Fredensgade", "husnnr": "36", "invalidepladser": 2, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-10 14:23:36.633", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-10 14:23:36.633", "mi_style": null, "mi_prinx": 468}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575071.6634185021, 6223738.822607417]},"properties": {"vejnavn": "Fredensgade ", "husnnr": "36", "invalidepladser": 2, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-10 14:24:07.44", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-10 14:24:07.44", "mi_style": null, "mi_prinx": 469}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574458.5545235131, 6224405.154470327]},"properties": {"vejnavn": "Langelandsgade", "husnnr": "4", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-10 15:01:44.29", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-10 15:01:44.29", "mi_style": null, "mi_prinx": 470}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574456.8303596153, 6224406.480750249]},"properties": {"vejnavn": "Langelandsgade", "husnnr": "4", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-10 15:02:10.15", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-10 15:02:10.15", "mi_style": null, "mi_prinx": 471}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574439.588720638, 6224425.8444371]},"properties": {"vejnavn": "Langelandsgade", "husnnr": "6", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-10 15:02:36.877", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-10 15:02:36.877", "mi_style": null, "mi_prinx": 472}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574213.7462111231, 6224317.430271916]},"properties": {"vejnavn": "Mønsgade", "husnnr": "8a", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-10 15:06:38.743", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-10 15:06:38.743", "mi_style": null, "mi_prinx": 473}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574364.2445136809, 6225576.13351622]},"properties": {"vejnavn": "Gustav Wieds Vej", "husnnr": "31", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-10 15:14:03.827", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-10 15:14:03.827", "mi_style": null, "mi_prinx": 474}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574271.226033188, 6225520.486698972]},"properties": {"vejnavn": "Gustav Wieds Vej", "husnnr": "25", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-10 15:14:25.237", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-10 15:14:54.583", "mi_style": null, "mi_prinx": 475}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573648.4455852153, 6222703.284394252]},"properties": {"vejnavn": "Åbenrågade", "husnnr": "9", "invalidepladser": 2, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-10 15:18:50.257", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 11:30:10.813", "mi_style": null, "mi_prinx": 476}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573645.981519507, 6222704.927104725]},"properties": {"vejnavn": "Åbenrågade", "husnnr": "9", "invalidepladser": 2, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-10 15:19:02.07", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 11:30:24.89", "mi_style": null, "mi_prinx": 477}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574615.0200821363, 6226143.664271046]},"properties": {"vejnavn": "Brendstrupvej", "husnnr": "5", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-10 15:24:58.847", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-10 15:25:25.463", "mi_style": null, "mi_prinx": 478}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573440.6894959002, 6225916.164055831]},"properties": {"vejnavn": "Fuglesangs Allé ", "husnnr": "115", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-10 15:30:49.483", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-10 15:31:19.2", "mi_style": null, "mi_prinx": 479}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573441.7161899453, 6225914.829353572]},"properties": {"vejnavn": "Fuglesangs Allé", "husnnr": "115", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-10 15:31:13.193", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-10 15:31:13.193", "mi_style": null, "mi_prinx": 480}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [572528.9192842386, 6223635.9144780645]},"properties": {"vejnavn": "Åbyvej ", "husnnr": "56", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-10 15:33:23.21", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-10 15:33:23.21", "mi_style": null, "mi_prinx": 481}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [577384.3500328106, 6228392.545887083]},"properties": {"vejnavn": "Vestre Strandallé", "husnnr": "170", "invalidepladser": 2, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-10 15:35:52.45", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-10 15:35:52.45", "mi_style": null, "mi_prinx": 482}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [577384.3500328106, 6228395.831308028]},"properties": {"vejnavn": "Vestre Strandallé", "husnnr": "170", "invalidepladser": 2, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-10 15:36:07.74", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-10 15:36:07.74", "mi_style": null, "mi_prinx": 483}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574290.6883509178, 6223440.857930892]},"properties": {"vejnavn": "Christen Købkes Gade", "husnnr": "25", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 08:04:38.56", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 08:04:38.56", "mi_style": null, "mi_prinx": 485}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574292.8885474477, 6223450.555093376]},"properties": {"vejnavn": "Christen Købkes gade", "husnnr": "25", "invalidepladser": 1, "bemrk": "tidsbegrænset", "ident": "", "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 08:05:17.92", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 08:05:17.92", "mi_style": null, "mi_prinx": 486}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574188.2994045179, 6222220.596509239]},"properties": {"vejnavn": "Ellemarksvej", "husnnr": "25", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 08:09:47.597", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 08:09:47.597", "mi_style": null, "mi_prinx": 487}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574594.8774293908, 6224862.872887781]},"properties": {"vejnavn": "Falstergade ", "husnnr": "9", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 08:11:45.25", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 08:11:45.25", "mi_style": null, "mi_prinx": 488}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575645.3796509246, 6225033.394188903]},"properties": {"vejnavn": "Fiskerivej", "husnnr": "2", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 08:13:23.887", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 08:13:23.887", "mi_style": null, "mi_prinx": 489}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575687.3336841018, 6225135.283751449]},"properties": {"vejnavn": "Fiskerivej", "husnnr": "6", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 08:21:28.367", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 08:21:28.367", "mi_style": null, "mi_prinx": 490}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573765.5234907598, 6222669.554414783]},"properties": {"vejnavn": "Gråstengade", "husnnr": "4", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 08:23:07.33", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 08:23:07.33", "mi_style": null, "mi_prinx": 491}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574263.9406273357, 6223167.701885861]},"properties": {"vejnavn": "Holbergsgade", "husnnr": "4", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 08:37:05.283", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 08:37:05.283", "mi_style": null, "mi_prinx": 492}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573818.8194244037, 6222564.275600996]},"properties": {"vejnavn": "P.P. Ørums Gade ", "husnnr": "40", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 08:54:37.353", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 08:54:37.353", "mi_style": null, "mi_prinx": 494}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575020.143846024, 6224751.283552042]},"properties": {"vejnavn": "Sjællandsgade ", "husnnr": "44", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 08:55:58.737", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 08:55:58.737", "mi_style": null, "mi_prinx": 495}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575126.0758521565, 6225602.137577002]},"properties": {"vejnavn": "Skt. Johannes Allé", "husnnr": "4", "invalidepladser": 1, "bemrk": "tidsbegrænset", "ident": "", "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 08:58:18.097", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 08:58:18.097", "mi_style": null, "mi_prinx": 497}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575127.7185626287, 6225602.958932239]},"properties": {"vejnavn": "Skt. Johannes Allé ", "husnnr": "4", "invalidepladser": 1, "bemrk": "Tidsbegrænset", "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 08:58:54.79", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 08:58:54.79", "mi_style": null, "mi_prinx": 498}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574192.3717864477, 6222728.518480494]},"properties": {"vejnavn": "Stadion Allé ", "husnnr": "5", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 09:01:35.56", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 09:01:35.56", "mi_style": null, "mi_prinx": 499}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574516.2188090354, 6224495.0]},"properties": {"vejnavn": "Teglværksgade", "husnnr": "5", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 09:04:13.31", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 09:04:13.31", "mi_style": null, "mi_prinx": 500}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573382.1503490765, 6222436.561601641]},"properties": {"vejnavn": "Langenæs Allé", "husnnr": "45", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 09:05:22.27", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 09:05:22.27", "mi_style": null, "mi_prinx": 501}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574586.7241332495, 6222319.2006106265]},"properties": {"vejnavn": "Marselis tværvej", "husnnr": "3", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 09:10:21.543", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 09:10:21.543", "mi_style": null, "mi_prinx": 502}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575512.1720674813, 6225984.295569786]},"properties": {"vejnavn": "Herluf Trolles Gade", "husnnr": "43", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 09:11:37.07", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 09:11:37.07", "mi_style": null, "mi_prinx": 503}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [570549.4435318275, 6223329.651950718]},"properties": {"vejnavn": "Louisevej", "husnnr": "60", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 09:12:39.197", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 09:12:39.197", "mi_style": null, "mi_prinx": 504}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575432.3019691993, 6213534.279897331]},"properties": {"vejnavn": "Skoleparken", "husnnr": "3", "invalidepladser": 2, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 09:15:20.913", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 09:15:20.913", "mi_style": null, "mi_prinx": 505}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575435.1767125258, 6213534.895913758]},"properties": {"vejnavn": "Skoleparken ", "husnnr": "3", "invalidepladser": 2, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 09:15:35.137", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 09:15:35.137", "mi_style": null, "mi_prinx": 506}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574686.8167566396, 6224112.425570103]},"properties": {"vejnavn": "Blegdammen", "husnnr": "3", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 09:46:05.277", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 09:46:05.277", "mi_style": null, "mi_prinx": 507}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574737.8197535932, 6222559.590349074]},"properties": {"vejnavn": "Dalgas Avenue", "husnnr": "33", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 09:48:59.607", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 09:48:59.607", "mi_style": null, "mi_prinx": 508}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574724.2673921969, 6222578.276180697]},"properties": {"vejnavn": "Dalgas Avenue", "husnnr": "31", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 09:49:32.92", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 09:49:32.92", "mi_style": null, "mi_prinx": 509}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574662.6690560804, 6222698.830589775]},"properties": {"vejnavn": "Fåborggade", "husnnr": "19", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 09:52:16.67", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 09:52:16.67", "mi_style": null, "mi_prinx": 510}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573723.7641226394, 6222883.87392884]},"properties": {"vejnavn": "Haderslevgade", "husnnr": "23", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 09:56:02.037", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 09:56:02.037", "mi_style": null, "mi_prinx": 511}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574950.1948158465, 6222518.823101973]},"properties": {"vejnavn": "Kildegården ", "husnnr": "14", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 10:02:38.327", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 10:02:38.327", "mi_style": null, "mi_prinx": 512}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573174.3326094088, 6222324.340775997]},"properties": {"vejnavn": "Kirkedammen", "husnnr": "31", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 10:03:44.91", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 10:03:44.91", "mi_style": null, "mi_prinx": 513}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574764.3736858368, 6224401.6597698275]},"properties": {"vejnavn": "Klostergade", "husnnr": "68", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 10:04:40.63", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 10:04:40.63", "mi_style": null, "mi_prinx": 514}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575484.2643121149, 6224755.312114988]},"properties": {"vejnavn": "Kystvejen", "husnnr": "63", "invalidepladser": null, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 10:05:45.95", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 10:05:45.95", "mi_style": null, "mi_prinx": 516}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575260.0545790552, 6225740.691868583]},"properties": {"vejnavn": "Niels Juels Gade", "husnnr": "64", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 10:06:42.113", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 10:06:42.113", "mi_style": null, "mi_prinx": 517}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574122.1695396319, 6222253.575999677]},"properties": {"vejnavn": "Ordrupvej", "husnnr": "7", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 10:07:29.987", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 10:07:29.987", "mi_style": null, "mi_prinx": 518}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573820.2902647848, 6222564.066232556]},"properties": {"vejnavn": "P.P. Ørums Gade", "husnnr": "40", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 10:08:36.257", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 10:08:36.257", "mi_style": null, "mi_prinx": 519}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573513.2284804934, 6224421.503059546]},"properties": {"vejnavn": "Thomas Nielsens Gade ", "husnnr": "4b", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 10:35:15.567", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 10:35:15.567", "mi_style": null, "mi_prinx": 521}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574869.9698357292, 6224686.401437372]},"properties": {"vejnavn": "Thunøgade", "husnnr": "17", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 10:36:20.32", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 10:36:20.32", "mi_style": null, "mi_prinx": 522}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574842.0437577005, 6224677.982546201]},"properties": {"vejnavn": "Thunøgade", "husnnr": "21", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 10:36:47.17", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 10:36:47.17", "mi_style": null, "mi_prinx": 523}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573819.4550102665, 6222787.195071867]},"properties": {"vejnavn": "Langenæs Allé", "husnnr": "1", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 10:38:32.23", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 10:38:32.23", "mi_style": null, "mi_prinx": 524}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573819.8656878845, 6222774.258726898]},"properties": {"vejnavn": "Langenæs Allé", "husnnr": "3", "invalidepladser": null, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 10:38:44.137", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 10:38:44.137", "mi_style": null, "mi_prinx": 525}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573809.5987474328, 6222763.17043121]},"properties": {"vejnavn": "Langenæs Allé", "husnnr": "5", "invalidepladser": null, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 10:39:04.733", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 10:39:04.733", "mi_style": null, "mi_prinx": 526}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574862.9051540041, 6226224.204312115]},"properties": {"vejnavn": "Finsensgade", "husnnr": "61", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 10:40:40.31", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 10:40:40.31", "mi_style": null, "mi_prinx": 527}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575609.3253388093, 6225642.107802872]},"properties": {"vejnavn": "Niels Juels Gade", "husnnr": "14", "invalidepladser": null, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 10:41:40.133", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 10:41:40.133", "mi_style": null, "mi_prinx": 528}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575621.7098357282, 6226157.82032854]},"properties": {"vejnavn": "Skovvangsvej", "husnnr": "220", "invalidepladser": null, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 10:42:29.26", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 10:42:29.26", "mi_style": null, "mi_prinx": 529}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574273.5949691997, 6226579.6673511285]},"properties": {"vejnavn": "Frederikshaldsgade ", "husnnr": "15", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 10:46:09.1", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 10:46:09.1", "mi_style": null, "mi_prinx": 530}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574272.9789527727, 6226577.408624229]},"properties": {"vejnavn": "Frederikshaldsgade", "husnnr": "15", "invalidepladser": null, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 10:46:27.437", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 10:46:27.437", "mi_style": null, "mi_prinx": 531}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574550.2745468095, 6226415.597575942]},"properties": {"vejnavn": "Norges Allé", "husnnr": "1", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 10:48:32.27", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 10:48:32.27", "mi_style": null, "mi_prinx": 532}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573464.9690871622, 6225551.886526177]},"properties": {"vejnavn": "Fuglesangs Allé", "husnnr": "114", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 10:49:51.593", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 10:49:51.593", "mi_style": null, "mi_prinx": 533}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573284.2962628339, 6226064.2587268995]},"properties": {"vejnavn": "Hammershusvej ", "husnnr": "51", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 10:50:32.377", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 10:50:32.377", "mi_style": null, "mi_prinx": 534}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574168.5019342923, 6225689.519246406]},"properties": {"vejnavn": "Jens Baggesens Vej", "husnnr": "92d", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 10:52:34.45", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 10:52:34.45", "mi_style": null, "mi_prinx": 536}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573183.6454293831, 6219583.845422071]},"properties": {"vejnavn": "M.P. Hansens Vej", "husnnr": "18", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 10:54:27.033", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 10:54:27.033", "mi_style": null, "mi_prinx": 537}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573194.0588431241, 6219583.965116482]},"properties": {"vejnavn": "M.P. Hansens Gade", "husnnr": "18", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 10:54:45.367", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 10:54:45.367", "mi_style": null, "mi_prinx": 538}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574293.6617659132, 6222509.108829569]},"properties": {"vejnavn": "F. Vestergaards Gade", "husnnr": "32", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 10:56:36.283", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 10:56:36.283", "mi_style": null, "mi_prinx": 539}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574290.7870225868, 6222525.535934292]},"properties": {"vejnavn": "F. Vestergaards Gade ", "husnnr": "32", "invalidepladser": null, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 10:56:51.647", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 10:56:51.647", "mi_style": null, "mi_prinx": 540}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575014.7018685832, 6224472.544147842]},"properties": {"vejnavn": "Guldsmedegade", "husnnr": "26", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 10:58:17.377", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 10:58:17.377", "mi_style": null, "mi_prinx": 541}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574853.3419507187, 6224400.072895276]},"properties": {"vejnavn": "Klostergade ", "husnnr": "56", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 11:01:19.687", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 11:01:46.85", "mi_style": null, "mi_prinx": 542}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574850.2618685832, 6224400.278234085]},"properties": {"vejnavn": "Klostergade", "husnnr": "56", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 11:01:29.593", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 11:01:29.593", "mi_style": null, "mi_prinx": 543}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573800.5521852324, 6222947.219776177]},"properties": {"vejnavn": "Læssøesgade", "husnnr": "83", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 11:15:14.473", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 11:15:14.473", "mi_style": null, "mi_prinx": 544}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575433.1519507194, 6224837.509240246]},"properties": {"vejnavn": "Molsgade", "husnnr": "4", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 11:27:04.7", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 11:27:04.7", "mi_style": null, "mi_prinx": 545}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574117.4563655023, 6222280.277207391]},"properties": {"vejnavn": "Ordrupvej", "husnnr": "1", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 11:27:44.68", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 11:27:44.68", "mi_style": null, "mi_prinx": 547}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573592.798767967, 6222723.202258727]},"properties": {"vejnavn": "Åbenrågade", "husnnr": "17", "invalidepladser": null, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 11:30:01.607", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 11:30:01.607", "mi_style": null, "mi_prinx": 548}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573852.0671252563, 6224259.847022587]},"properties": {"vejnavn": "Ringkøbingvej ", "husnnr": "16", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 11:31:29.06", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 11:31:29.06", "mi_style": null, "mi_prinx": 549}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573851.8617864472, 6224258.409650924]},"properties": {"vejnavn": "Ringkøbingvej", "husnnr": "16", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 11:31:45.1", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 11:31:45.1", "mi_style": null, "mi_prinx": 550}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574375.1585652019, 6222033.415963625]},"properties": {"vejnavn": "Skovbrynet", "husnnr": null, "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 11:33:45.17", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 11:33:45.17", "mi_style": null, "mi_prinx": 551}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574606.2883778228, 6227299.677618067]},"properties": {"vejnavn": "Vorregårds Allé ", "husnnr": "103", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 11:34:59.943", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 11:34:59.943", "mi_style": null, "mi_prinx": 552}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575306.5234312108, 6225834.736901434]},"properties": {"vejnavn": "Willemoesgade", "husnnr": "13", "invalidepladser": 1, "bemrk": "Tidsbegrænset", "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 11:36:31.937", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 11:36:31.937", "mi_style": null, "mi_prinx": 553}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575306.9341088288, 6225832.478174535]},"properties": {"vejnavn": "Willemoesgade", "husnnr": "13", "invalidepladser": 1, "bemrk": "tidsbegrænset", "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 11:36:49.883", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 11:36:49.883", "mi_style": null, "mi_prinx": 554}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573236.9384143031, 6220161.223442913]},"properties": {"vejnavn": "Rundhøj Allé", "husnnr": "54", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 11:38:24.073", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 11:38:24.073", "mi_style": null, "mi_prinx": 555}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [570728.6893018486, 6216766.413757699]},"properties": {"vejnavn": "Kirketorvet", "husnnr": null, "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 11:42:34.943", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 11:42:34.943", "mi_style": null, "mi_prinx": 556}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [570725.4038809041, 6216767.645790554]},"properties": {"vejnavn": "Kirketorvet", "husnnr": null, "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 11:42:46.957", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 11:42:46.957", "mi_style": null, "mi_prinx": 557}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [570683.72010267, 6216786.947638603]},"properties": {"vejnavn": "Kirketorvet", "husnnr": null, "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 11:43:20.413", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 11:43:20.413", "mi_style": null, "mi_prinx": 558}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [570684.5414579061, 6216790.438398357]},"properties": {"vejnavn": "Kirketorvet", "husnnr": null, "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 11:43:30.79", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 11:43:30.79", "mi_style": null, "mi_prinx": 559}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [570716.1636344974, 6216831.916837782]},"properties": {"vejnavn": "Kirketorvet", "husnnr": null, "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 11:43:47.467", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 11:43:47.467", "mi_style": null, "mi_prinx": 560}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [570716.5743121156, 6216834.996919917]},"properties": {"vejnavn": "Kirketorvet", "husnnr": null, "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 11:43:57.08", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 11:43:57.08", "mi_style": null, "mi_prinx": 561}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575070.7447433264, 6223252.195071867]},"properties": {"vejnavn": "Jægergårdsgade", "husnnr": "144", "invalidepladser": 1, "bemrk": "tidsbegrænset", "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 11:45:13.057", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 11:45:13.057", "mi_style": null, "mi_prinx": 562}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574936.4408418891, 6222987.421971251]},"properties": {"vejnavn": "Marselisborg Allé", "husnnr": "30b", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 11:46:52.93", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 11:46:52.93", "mi_style": null, "mi_prinx": 563}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573702.7326710331, 6224158.784515839]},"properties": {"vejnavn": "Regenburgs Plads", "husnnr": "50", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 11:48:19.28", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 11:48:19.28", "mi_style": null, "mi_prinx": 564}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573619.7098357283, 6224188.62422998]},"properties": {"vejnavn": "Regenburgsgade", "husnnr": "11", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 11:50:10.157", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 11:50:10.157", "mi_style": null, "mi_prinx": 565}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573603.5732238201, 6222298.034907595]},"properties": {"vejnavn": "Rudpolh Wulffs Gade", "husnnr": "13", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 11:51:55.07", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 11:51:55.07", "mi_style": null, "mi_prinx": 566}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574949.381326311, 6223149.484703504]},"properties": {"vejnavn": "st st blichers gade", "husnnr": "28", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 11:53:08.913", "rettet_af": "spatial_reader", "rettet_dato": "2025-07-31 10:02:57.243", "mi_style": null, "mi_prinx": 567}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574499.2238193017, 6224391.241273099]},"properties": {"vejnavn": "Teglværksgade", "husnnr": "4", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 11:58:48.823", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 11:58:48.823", "mi_style": null, "mi_prinx": 568}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575248.5108008216, 6223656.206817246]},"properties": {"vejnavn": "Toldbodgade", "husnnr": "8b", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 13:31:29.01", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 13:31:29.01", "mi_style": null, "mi_prinx": 569}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575613.2119507189, 6225969.438398356]},"properties": {"vejnavn": "Herluf Trolles gade", "husnnr": "28", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 13:35:59.73", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 13:35:59.73", "mi_style": null, "mi_prinx": 571}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575459.9619507184, 6225872.322381929]},"properties": {"vejnavn": "Otte Ruds Gade", "husnnr": "38", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 13:36:48.51", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 13:36:48.51", "mi_style": null, "mi_prinx": 572}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [572973.5414579054, 6219822.767967144]},"properties": {"vejnavn": "Rundhøj Alle", "husnnr": "129", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 13:47:28.83", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 13:47:28.83", "mi_style": null, "mi_prinx": 573}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573964.5795687882, 6225531.675564681]},"properties": {"vejnavn": "Jens Baggesens Vej", "husnnr": "84", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 13:52:36.853", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 13:52:36.853", "mi_style": null, "mi_prinx": 574}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573962.7315195069, 6225530.443531826]},"properties": {"vejnavn": "Jens Baggesens Vej", "husnnr": "84", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 13:52:50.743", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 13:52:50.743", "mi_style": null, "mi_prinx": 575}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573763.6589431843, 6225400.732252075]},"properties": {"vejnavn": "Peter Fabers Vej", "husnnr": "7", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 14:02:57.817", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 14:02:57.817", "mi_style": null, "mi_prinx": 576}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573569.8198767971, 6225558.664271047]},"properties": {"vejnavn": "Peter Fabers Vej", "husnnr": "45", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 14:03:59.61", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 14:03:59.61", "mi_style": null, "mi_prinx": 577}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573689.2009378455, 6225304.105604249]},"properties": {"vejnavn": "Viggo Stuckenbergs Vej", "husnnr": "7", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 14:05:26.077", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 14:05:26.077", "mi_style": null, "mi_prinx": 578}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [571906.5431211507, 6223317.124229979]},"properties": {"vejnavn": "Hnerik Hertz Vej", "husnnr": "54", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 14:06:25.737", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 14:06:25.737", "mi_style": null, "mi_prinx": 579}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [572263.050246407, 6223168.713552361]},"properties": {"vejnavn": "O.I. offersens Vej", "husnnr": "13", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 14:07:10.387", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 14:07:10.387", "mi_style": null, "mi_prinx": 580}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [571635.578603885, 6220454.145748499]},"properties": {"vejnavn": "Grøndalsvej ", "husnnr": "2", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 14:10:06.363", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 14:10:06.363", "mi_style": null, "mi_prinx": 581}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [571637.4266531663, 6220455.78845897]},"properties": {"vejnavn": "Grøndalsvej ", "husnnr": "2", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 14:10:17.097", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 14:10:17.097", "mi_style": null, "mi_prinx": 582}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [571642.9708010103, 6220460.511251578]},"properties": {"vejnavn": "Grøndalsvej", "husnnr": "2", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 14:10:50.553", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 14:10:50.553", "mi_style": null, "mi_prinx": 583}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [571645.8455443367, 6220461.948623242]},"properties": {"vejnavn": "Grøndalsvej", "husnnr": "2", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 14:11:00.837", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 14:11:00.837", "mi_style": null, "mi_prinx": 584}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575130.4157366346, 6223963.371970712]},"properties": {"vejnavn": "Fiskergade", "husnnr": "80", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 14:18:06.18", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 14:18:06.18", "mi_style": null, "mi_prinx": 585}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575127.8080963028, 6223964.838768398]},"properties": {"vejnavn": "Fiskergade", "husnnr": "80", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 14:18:18.71", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 14:18:18.71", "mi_style": null, "mi_prinx": 586}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575089.0245238632, 6223834.6749242265]},"properties": {"vejnavn": "Østergade", "husnnr": "48", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 14:19:11.287", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 14:19:11.287", "mi_style": null, "mi_prinx": 587}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574258.2222792607, 6222755.437371662]},"properties": {"vejnavn": "F. Vestergaards gade", "husnnr": "4", "invalidepladser": null, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 14:20:02.303", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 14:20:02.303", "mi_style": null, "mi_prinx": 588}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574263.5610882957, 6222709.852156057]},"properties": {"vejnavn": "F. Vestergaards Gade", "husnnr": "12", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-17 14:20:27.033", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-17 14:20:27.033", "mi_style": null, "mi_prinx": 589}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573703.2468583164, 6225533.67761807]},"properties": {"vejnavn": "Vilhelm Bergsøes Vej ", "husnnr": "37", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-24 13:08:01.087", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-24 13:08:01.087", "mi_style": null, "mi_prinx": 590}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574949.4344056073, 6222520.606665064]},"properties": {"vejnavn": "Adoplh Meyers Vej", "husnnr": "10", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-24 14:06:23.613", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-24 14:06:23.613", "mi_style": null, "mi_prinx": 591}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573440.4595687881, 6220071.08932238]},"properties": {"vejnavn": "Rundhøj Allé", "husnnr": "1", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-24 14:10:59.32", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-24 14:10:59.32", "mi_style": null, "mi_prinx": 592}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574108.964579056, 6219523.614989731]},"properties": {"vejnavn": "Niels Bjerres Vej", "husnnr": "33", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-24 14:54:28.78", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-24 14:54:28.78", "mi_style": null, "mi_prinx": 593}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574773.7705954819, 6222620.240246407]},"properties": {"vejnavn": "Assensgade", "husnnr": "15", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-02-24 15:09:24.753", "rettet_af": "spatial_reader", "rettet_dato": "2025-02-24 15:09:24.753", "mi_style": null, "mi_prinx": 594}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573563.520197629, 6225599.931539235]},"properties": {"vejnavn": "Vilhelm Bergsøes Vej", "husnnr": "65", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-03-03 15:31:57.61", "rettet_af": "spatial_reader", "rettet_dato": "2025-03-03 15:31:57.61", "mi_style": null, "mi_prinx": 595}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573565.9366160922, 6225599.931539235]},"properties": {"vejnavn": "Vilhelm Bergsøes Vej", "husnnr": "65", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-03-03 15:32:11.45", "rettet_af": "spatial_reader", "rettet_dato": "2025-03-03 15:32:11.45", "mi_style": null, "mi_prinx": 596}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573900.4239732762, 6224444.639830079]},"properties": {"vejnavn": "Eugen Warmings Vej", "husnnr": "6", "invalidepladser": 2, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-07-24 12:35:23.093", "rettet_af": "spatial_reader", "rettet_dato": "2025-07-24 12:35:23.093", "mi_style": null, "mi_prinx": 597}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573895.0856880753, 6224474.736713882]},"properties": {"vejnavn": "Eugen Warmings Vej", "husnnr": "6", "invalidepladser": 2, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-07-24 12:36:37.753", "rettet_af": "spatial_reader", "rettet_dato": "2025-07-24 12:36:37.753", "mi_style": null, "mi_prinx": 598}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574904.906065573, 6222700.202576111]},"properties": {"vejnavn": "Hendrik Pontoppidans Gade", "husnnr": "24", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-07-24 13:10:47.673", "rettet_af": "spatial_reader", "rettet_dato": "2025-07-24 13:10:47.673", "mi_style": null, "mi_prinx": 599}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [576675.4374502097, 6227137.355086146]},"properties": {"vejnavn": "stationsgade", "husnnr": "26", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-07-28 09:34:00.233", "rettet_af": "spatial_reader", "rettet_dato": "2025-07-28 09:34:00.233", "mi_style": null, "mi_prinx": 600}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574471.4348262089, 6222940.82387054]},"properties": {"vejnavn": "Skt Anna Gade", "husnnr": null, "invalidepladser": null, "bemrk": "42", "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-07-28 14:14:27.8", "rettet_af": "spatial_reader", "rettet_dato": "2025-07-28 14:14:27.8", "mi_style": null, "mi_prinx": 601}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574477.5688115384, 6222914.615024131]},"properties": {"vejnavn": "Skt Anna Gade", "husnnr": "42", "invalidepladser": null, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-07-28 14:14:41.96", "rettet_af": "spatial_reader", "rettet_dato": "2025-07-28 14:14:41.96", "mi_style": null, "mi_prinx": 602}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575230.8720257445, 6224047.548393872]},"properties": {"vejnavn": "Kannikegade 16", "husnnr": "16", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-07-31 09:56:55.567", "rettet_af": "spatial_reader", "rettet_dato": "2025-07-31 09:56:55.567", "mi_style": null, "mi_prinx": 603}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [571983.2489361251, 6223205.13326127]},"properties": {"vejnavn": "Henrik Hertz Vej ", "husnnr": "72", "invalidepladser": 2, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-07-31 10:59:53.147", "rettet_af": "spatial_reader", "rettet_dato": "2025-07-31 10:59:53.147", "mi_style": null, "mi_prinx": 604}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [571985.1224724249, 6223202.557148858]},"properties": {"vejnavn": "Henrik Hertz Vej", "husnnr": "72", "invalidepladser": 2, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-07-31 11:01:03.507", "rettet_af": "spatial_reader", "rettet_dato": "2025-07-31 11:01:03.507", "mi_style": null, "mi_prinx": 605}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574835.1320140511, 6222779.284543324]},"properties": {"vejnavn": "Hans Broges Gade", "husnnr": "17", "invalidepladser": 2, "bemrk": "Tidsbegrænset", "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-07-31 11:15:39.89", "rettet_af": "spatial_reader", "rettet_dato": "2025-07-31 11:15:39.89", "mi_style": null, "mi_prinx": 606}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575250.902172792, 6224568.6143739]},"properties": {"vejnavn": "Studsgade ", "husnnr": "44", "invalidepladser": 2, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-07-31 13:48:01.11", "rettet_af": "spatial_reader", "rettet_dato": "2025-07-31 13:48:01.11", "mi_style": null, "mi_prinx": 607}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574412.2255140772, 6224274.489827803]},"properties": {"vejnavn": "Janus La Cours gade", "husnnr": "1", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-09-11 11:40:20.08", "rettet_af": "spatial_reader", "rettet_dato": "2025-09-11 11:40:20.08", "mi_style": null, "mi_prinx": 608}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574548.0404080742, 6226415.892238429]},"properties": {"vejnavn": "Norges Allé ", "husnnr": "2", "invalidepladser": 1, "bemrk": null, "ident": "1338", "oprettet_af": "spatial_reader", "oprettet_dato": "2025-09-11 11:43:11.467", "rettet_af": "spatial_reader", "rettet_dato": "2025-09-11 11:43:11.467", "mi_style": null, "mi_prinx": 609}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573738.9391065245, 6225498.3024416845]},"properties": {"vejnavn": "Vilhelm Bergsøes Vej", "husnnr": "23", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-09-11 11:44:27.91", "rettet_af": "spatial_reader", "rettet_dato": "2025-09-11 11:44:27.91", "mi_style": null, "mi_prinx": 610}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573740.2607020313, 6225496.834002232]},"properties": {"vejnavn": "Vilhelm Bergsøes vej", "husnnr": "23", "invalidepladser": 1, "bemrk": null, "ident": "1338", "oprettet_af": "spatial_reader", "oprettet_dato": "2025-09-11 11:44:55.213", "rettet_af": "spatial_reader", "rettet_dato": "2025-09-11 11:44:55.213", "mi_style": null, "mi_prinx": 611}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [572487.2086247086, 6221123.172494171]},"properties": {"vejnavn": "Rørdamsvej", "husnnr": "4", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-09-11 11:47:21.347", "rettet_af": "spatial_reader", "rettet_dato": "2025-09-11 11:47:21.347", "mi_style": null, "mi_prinx": 612}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [572485.3438228437, 6221125.736596736]},"properties": {"vejnavn": "Rørdamsvej", "husnnr": "4", "invalidepladser": 1, "bemrk": null, "ident": "1338", "oprettet_af": "spatial_reader", "oprettet_dato": "2025-09-11 11:47:40.887", "rettet_af": "spatial_reader", "rettet_dato": "2025-09-11 11:47:40.887", "mi_style": null, "mi_prinx": 613}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573450.7706904352, 6221551.299040821]},"properties": {"vejnavn": "H.C. Ørsteds Vej", "husnnr": "3b", "invalidepladser": 1, "bemrk": null, "ident": "1338", "oprettet_af": "spatial_reader", "oprettet_dato": "2025-09-11 11:49:03.467", "rettet_af": "spatial_reader", "rettet_dato": "2025-09-11 11:49:03.467", "mi_style": null, "mi_prinx": 614}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574422.5215850822, 6227269.3811188815]},"properties": {"vejnavn": "Skrydstrupvej", "husnnr": "15", "invalidepladser": 1, "bemrk": null, "ident": "1338", "oprettet_af": "spatial_reader", "oprettet_dato": "2025-09-11 11:50:15.83", "rettet_af": "spatial_reader", "rettet_dato": "2025-09-11 11:50:15.83", "mi_style": null, "mi_prinx": 615}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574201.3469197123, 6222224.453960875]},"properties": {"vejnavn": "Ellemarksvej ", "husnnr": "3", "invalidepladser": 1, "bemrk": null, "ident": "1338", "oprettet_af": "spatial_reader", "oprettet_dato": "2025-09-11 11:51:52.827", "rettet_af": "spatial_reader", "rettet_dato": "2025-09-11 11:51:52.827", "mi_style": null, "mi_prinx": 616}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574261.9134668851, 6223538.282346269]},"properties": {"vejnavn": "Eckersbergsgade", "husnnr": "30", "invalidepladser": 1, "bemrk": "1345", "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2025-12-02 13:14:47.253", "rettet_af": "spatial_reader", "rettet_dato": "2025-12-02 13:14:47.253", "mi_style": null, "mi_prinx": 617}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [572304.1753244308, 6223126.011642109]},"properties": {"vejnavn": "O. I. Offersensvej ", "husnnr": "1", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2026-02-24 12:51:35.733", "rettet_af": "spatial_reader", "rettet_dato": "2026-02-24 12:51:35.733", "mi_style": null, "mi_prinx": 618}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574370.9164150944, 6222348.226415094]},"properties": {"vejnavn": "Marselis Boulevard", "husnnr": "33", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2026-02-24 14:21:24.417", "rettet_af": "spatial_reader", "rettet_dato": "2026-02-24 14:21:24.417", "mi_style": null, "mi_prinx": 619}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574625.108490566, 6226140.433962264]},"properties": {"vejnavn": "Brendstrupvej", "husnnr": "3", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2026-02-24 14:22:33.083", "rettet_af": "spatial_reader", "rettet_dato": "2026-02-24 14:22:33.083", "mi_style": null, "mi_prinx": 620}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575667.7509942062, 6225512.529924879]},"properties": {"vejnavn": "Trøjborgvej", "husnnr": "2b", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2026-03-03 15:32:27.96", "rettet_af": "spatial_reader", "rettet_dato": "2026-03-03 15:32:27.96", "mi_style": null, "mi_prinx": 621}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575717.5020655771, 6225812.445111568]},"properties": {"vejnavn": "Otte Ruds Gade", "husnnr": "5", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2026-03-10 15:36:13.387", "rettet_af": "spatial_reader", "rettet_dato": "2026-03-10 15:36:13.387", "mi_style": null, "mi_prinx": 622}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574461.6616818061, 6226572.319186298]},"properties": {"vejnavn": "Stockholmsgade", "husnnr": "1", "invalidepladser": 2, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2026-03-10 16:10:04.953", "rettet_af": "spatial_reader", "rettet_dato": "2026-03-10 16:10:04.953", "mi_style": null, "mi_prinx": 623}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [575466.6230287044, 6226492.72476525]},"properties": {"vejnavn": "Skovfaldet", "husnnr": "12", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2026-03-24 13:49:38.32", "rettet_af": "spatial_reader", "rettet_dato": "2026-03-24 13:49:38.32", "mi_style": null, "mi_prinx": 624}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574060.9656603774, 6222480.358490566]},"properties": {"vejnavn": "Hans Schourups Gade", "husnnr": "6", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2026-04-14 13:45:00.16", "rettet_af": "spatial_reader", "rettet_dato": "2026-04-14 13:45:00.16", "mi_style": null, "mi_prinx": 626}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574258.8724698942, 6211072.413328694]},"properties": {"vejnavn": "Dampmøllevej", "husnnr": "4", "invalidepladser": 2, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2026-09-04 14:50:52.313", "rettet_af": "spatial_reader", "rettet_dato": "2026-09-04 14:50:52.313", "mi_style": null, "mi_prinx": 628}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [574259.8084374957, 6211070.354199971]},"properties": {"vejnavn": "Dampmøllevej ", "husnnr": "4", "invalidepladser": 2, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2026-09-04 14:51:13.877", "rettet_af": "spatial_reader", "rettet_dato": "2026-09-04 14:51:13.877", "mi_style": null, "mi_prinx": 629}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [572717.6960377358, 6224879.641509433]},"properties": {"vejnavn": "Præstevamgsvej", "husnnr": "4", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2026-09-04 14:52:51.823", "rettet_af": "spatial_reader", "rettet_dato": "2026-09-04 14:52:51.823", "mi_style": null, "mi_prinx": 630}}, {"type": "Feature","geometry": {"type": "Point","coordinates": [573286.2358490566, 6225834.424528301]},"properties": {"vejnavn": "Majdalen", "husnnr": "1", "invalidepladser": 1, "bemrk": null, "ident": null, "oprettet_af": "spatial_reader", "oprettet_dato": "2026-09-04 14:54:06.53", "rettet_af": "spatial_reader", "rettet_dato": "2026-09-04 14:54:06.53", "mi_style": null, "mi_prinx": 631}}]} \ No newline at end of file From f0a032f9ba3497b5c280fb51ef3f7461e62631a0 Mon Sep 17 00:00:00 2001 From: Mikkel Ricky Date: Mon, 14 Sep 2026 20:48:05 +0200 Subject: [PATCH 5/5] =?UTF-8?q?Refactored=20test=20source=20stuff=20?= =?UTF-8?q?=E2=80=93=20again!?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/Testing.md | 15 +- src/Source/Definition.php | 2 +- .../Command/SourceFetchContentCommand.php | 15 +- src/Test/Command/SourceListCommand.php | 32 + src/Test/Command/SourcesImportCommand.php | 18 +- .../MtmSpatialMaps/TestHandicapParking.php | 12 +- src/Test/Source/Osm/TestHandicapParking.php | 11 +- src/Test/Source/TestDefinition.php | 40 ++ .../api/interpreter?osm-handicap-parking | 599 +++++++++++++++++- 9 files changed, 683 insertions(+), 61 deletions(-) create mode 100644 src/Test/Command/SourceListCommand.php create mode 100644 src/Test/Source/TestDefinition.php diff --git a/docs/Testing.md b/docs/Testing.md index ee1adf7..6642cee 100644 --- a/docs/Testing.md +++ b/docs/Testing.md @@ -4,13 +4,17 @@ For local testing and development we use a test controller that's only enabled in the `dev` and `test` environments. -Furthermore, we use static test sources (fetching locally stored data) for testing and development. By convention, -the ID of a test source starts with `test:`, i.e. they can be listed by running +Furthermore, we use static test sources (fetching locally stored data) for testing and development. Test sources are +identified by the `#[TestDefinition]` attribute (rather than `#[Definition]` as real sources). + +Test sources can be listed with the `test:source:list` command: ```shell -docker compose exec phpfpm php bin/console app:source:list | grep 'test:' +docker compose exec phpfpm php bin/console test:source:list ``` +(the `app:source:list` command will list all source; including test sources.) + Example: Import and show data from the test source `test:mtm_spatialmaps-handicap-parking`: ```shell @@ -30,10 +34,11 @@ The data files can be updated by running docker compose exec phpfpm php bin/console test:source:fetch-content ``` -Load *all test sources* with +As shown above, test sources can be imported just like real sources, but for convenience the `test:sources:import` +command can be used to import *all test sources*: ```shell -docker compose exec phpfpm php bin/console test:source:import +docker compose exec phpfpm php bin/console test:sources:import ``` To empty your local broker, e.g. before loading test data, run diff --git a/src/Source/Definition.php b/src/Source/Definition.php index a50e994..1e994ba 100644 --- a/src/Source/Definition.php +++ b/src/Source/Definition.php @@ -46,7 +46,7 @@ public function __construct( public static function of(string $class): self { $reflection = new \ReflectionClass($class); - $attribute = $reflection->getAttributes(Definition::class)[0] + $attribute = $reflection->getAttributes(Definition::class, flags: \ReflectionAttribute::IS_INSTANCEOF)[0] ?? throw new \LogicException(sprintf('Source %s declares no #[%s] attribute.', $class, Definition::class)); return $attribute->newInstance(); diff --git a/src/Test/Command/SourceFetchContentCommand.php b/src/Test/Command/SourceFetchContentCommand.php index 2e823eb..450b924 100644 --- a/src/Test/Command/SourceFetchContentCommand.php +++ b/src/Test/Command/SourceFetchContentCommand.php @@ -2,8 +2,8 @@ namespace App\Test\Command; -use App\Source\SourceInterface; use App\SourceManager; +use App\Test\Source\TestDefinition; use Symfony\Component\Console\Application; use Symfony\Component\Console\Attribute\AsCommand; use Symfony\Component\Console\Command\Command; @@ -29,13 +29,16 @@ public function __invoke( OutputInterface $output, Application $application, ): int { - /** @var SourceInterface[] $testSources */ - $testSources = array_filter($manager->getSources(), static fn (SourceInterface $source) => str_starts_with($source->definition->id, 'test:')); - foreach ($testSources as $source) { + foreach ($manager->getSources() as $source) { + $definition = $source->definition; + if (!$definition instanceof TestDefinition) { + continue; + } + try { $io->section($source); - $url = $source->definition->landingPage; - $filename = preg_replace('@^[a-z]+://[^/]+/test/@', '', $source->definition->accessUrl); + $url = $manager->getSource($definition->sourceId)->definition->accessUrl; + $filename = preg_replace('@^[a-z]+://[^/]+/test/@', '', $definition->accessUrl); $filename = __DIR__.'/../../../tests/resources/'.$filename; if ($filesystem->exists($filename)) { diff --git a/src/Test/Command/SourceListCommand.php b/src/Test/Command/SourceListCommand.php new file mode 100644 index 0000000..6a8deb8 --- /dev/null +++ b/src/Test/Command/SourceListCommand.php @@ -0,0 +1,32 @@ +getSources(), static fn (SourceInterface $source) => $source->definition instanceof TestDefinition); + + $io->writeln(sprintf('#sources: %d', \count($sources))); + foreach ($sources as $source) { + $io->writeln((string) $source); + } + + return Command::SUCCESS; + } +} diff --git a/src/Test/Command/SourcesImportCommand.php b/src/Test/Command/SourcesImportCommand.php index 2d2715e..ac19546 100644 --- a/src/Test/Command/SourcesImportCommand.php +++ b/src/Test/Command/SourcesImportCommand.php @@ -2,18 +2,15 @@ namespace App\Test\Command; -use App\Source\SourceInterface; use App\SourceManager; +use App\Test\Source\TestDefinition; use Symfony\Component\Console\Application; use Symfony\Component\Console\Attribute\AsCommand; -use Symfony\Component\Console\Attribute\Option; use Symfony\Component\Console\Command\Command; use Symfony\Component\Console\Input\ArrayInput; use Symfony\Component\Console\Output\OutputInterface; use Symfony\Component\Console\Style\SymfonyStyle; use Symfony\Component\DependencyInjection\Attribute\When; -use Symfony\Component\Filesystem\Filesystem; -use Symfony\Contracts\HttpClient\HttpClientInterface; #[AsCommand( name: 'test:sources:import', @@ -25,16 +22,15 @@ class SourcesImportCommand public function __invoke( SymfonyStyle $io, SourceManager $manager, - HttpClientInterface $httpClient, - Filesystem $filesystem, OutputInterface $output, Application $application, - #[Option(description: 'If specified, all successfully read test sources will be imported into the broker')] - bool $import = false, ): int { - /** @var SourceInterface[] $testSources */ - $testSources = array_filter($manager->getSources(), static fn (SourceInterface $source) => str_starts_with($source->definition->id, 'test:')); - foreach ($testSources as $source) { + foreach ($manager->getSources() as $source) { + $definition = $source->definition; + if (!$definition instanceof TestDefinition) { + continue; + } + try { $io->section($source); $input = new ArrayInput([ diff --git a/src/Test/Source/MtmSpatialMaps/TestHandicapParking.php b/src/Test/Source/MtmSpatialMaps/TestHandicapParking.php index 86dd040..8ee3be8 100644 --- a/src/Test/Source/MtmSpatialMaps/TestHandicapParking.php +++ b/src/Test/Source/MtmSpatialMaps/TestHandicapParking.php @@ -7,7 +7,7 @@ use App\Geo\Wgs84Transformer; use App\Ngsi\NgsiEntity; use App\Source\AbstractSource; -use App\Source\Definition; +use App\Test\Source\TestDefinition; use Symfony\Component\DependencyInjection\Attribute\When; /** @@ -15,22 +15,15 @@ */ #[When('dev')] #[When('test')] -#[Definition( +#[TestDefinition( // By convention the ID as a test source must start with `test:` id: 'test:mtm_spatialmaps-handicap-parking', title: 'Test: Handicapparkering, Aarhus Kommune', - description: '', - publisher: '', - contact: '', - // The landingPage URL is used by the `test:source:fetch-content` command to fetch test content. - landingPage: 'https://webkort.aarhuskommune.dk/spatialmap?page=get_geojson_opendata&datasource=invap', accessUrl: 'http://nginx:8080/test/data/webkort.aarhuskommune.dk/spatialmap?mtm_spatialmaps-handicap-parking', mediaType: 'application/geo+json', crs: 'EPSG:25832', model: 'OnStreetParking', contextUrl: 'https://raw.githubusercontent.com/smart-data-models/dataModel.Parking/master/context.jsonld', - updateFrequency: '', - licence: null, omittedFields: [ 'ident' => 'Single-letter code; its meaning is not documented and not confirmed by the data owner.', 'oprettet_af' => 'Directory username of the municipal employee who created the record.', @@ -39,6 +32,7 @@ 'rettet_dato' => 'Describes the register record.', 'mi_style' => 'MapInfo rendering style, empty throughout the export.', ], + sourceId: 'mtm_spatialmaps-handicap-parking', )] final class TestHandicapParking extends AbstractSource { diff --git a/src/Test/Source/Osm/TestHandicapParking.php b/src/Test/Source/Osm/TestHandicapParking.php index 48a823c..f71d7a3 100644 --- a/src/Test/Source/Osm/TestHandicapParking.php +++ b/src/Test/Source/Osm/TestHandicapParking.php @@ -8,6 +8,7 @@ use App\Ngsi\NgsiEntity; use App\Source\AbstractSource; use App\Source\Definition; +use App\Test\Source\TestDefinition; use Symfony\Component\DependencyInjection\Attribute\When; /** @@ -15,15 +16,10 @@ */ #[When('dev')] #[When('test')] -#[Definition( +#[TestDefinition( // By convention the ID as a test source must start with `test:` id: 'test:osm-handicap-parking', title: 'Test: Handicapparkering (OpenStreetMap), Aarhus Kommune', - description: '', - publisher: '', - contact: '', - // The landingPage URL is used by the `test:source:fetch-content` command to fetch test content. - landingPage: 'https://overpass-api.de/api/interpreter?data=%5Bout%3Ajson%5D%5Btimeout%3A180%5D%3Barea%283601784663%29-%3E.a%3B%28nwr%5B%22parking_space%22%3D%22disabled%22%5D%28area.a%29%3Bnwr%5B%22capacity%3Adisabled%22%5D%5B%22capacity%3Adisabled%22%21~%22%5E%28no%7C0%29%24%22%5D%28area.a%29%3B%29%3Bout%20geom%20tags%3B', // The Overpass QL in the URL: within Aarhus Municipality (OSM // relation 1784663), select every element tagged as a disabled // parking space (parking_space=disabled) or as reserving bays for @@ -33,8 +29,6 @@ crs: 'EPSG:4326', model: 'OnStreetParking', contextUrl: 'https://raw.githubusercontent.com/smart-data-models/dataModel.Parking/master/context.jsonld', - updateFrequency: '', - licence: null, omittedFields: [ 'amenity' => 'Selector distinguishing a single bay (parking_space) from a facility (parking); the model carries no such distinction.', @@ -50,6 +44,7 @@ 'operator' => 'Who runs the facility; a fact about the business rather than its reserved bays. 1% of records carry it.', 'brand' => 'Commercial brand of the facility; the name already identifies it. Under 1% of records carry it.', ], + sourceId: 'osm-handicap-parking', )] final class TestHandicapParking extends AbstractSource { diff --git a/src/Test/Source/TestDefinition.php b/src/Test/Source/TestDefinition.php new file mode 100644 index 0000000..58ef497 --- /dev/null +++ b/src/Test/Source/TestDefinition.php @@ -0,0 +1,40 @@ +